@charset "UTF-8";
:root {
  --tagify-dd-color-primary:rgb(53,149,246);
  --tagify-dd-text-color:black;
  --tagify-dd-bg-color:white;
  --tagify-dd-item-pad:.3em .5em;
  --tagify-dd-max-height:300px;
}

.tagify {
  --tags-disabled-bg:#F1F1F1;
  --tags-border-color:#DDD;
  --tags-hover-border-color:#CCC;
  --tags-focus-border-color:#3595f6;
  --tag-border-radius:3px;
  --tag-bg:#E5E5E5;
  --tag-hover:#D3E2E2;
  --tag-text-color:black;
  --tag-text-color--edit:black;
  --tag-pad:0.3em 0.5em;
  --tag-inset-shadow-size:1.2em;
  --tag-invalid-color:#D39494;
  --tag-invalid-bg:rgba(211, 148, 148, 0.5);
  --tag--min-width:1ch;
  --tag--max-width:100%;
  --tag-hide-transition:0.3s;
  --tag-remove-bg:rgba(211, 148, 148, 0.3);
  --tag-remove-btn-color:black;
  --tag-remove-btn-bg:none;
  --tag-remove-btn-bg--hover:#c77777;
  --input-color:inherit;
  --placeholder-color:rgba(0, 0, 0, 0.4);
  --placeholder-color-focus:rgba(0, 0, 0, 0.25);
  --loader-size:.8em;
  --readonly-striped:1;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid var(--tags-border-color);
  padding: 0;
  line-height: 0;
  outline: 0;
  position: relative;
  box-sizing: border-box;
  transition: 0.1s;
}

@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}
@keyframes rotateLoader {
  to {
    transform: rotate(1turn);
  }
}
.tagify:has([contenteditable=true]) {
  cursor: text;
}

.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
  --tags-border-color:var(--tags-hover-border-color);
}

.tagify[disabled] {
  background: var(--tags-disabled-bg);
  filter: saturate(0);
  opacity: 0.5;
  pointer-events: none;
}

.tagify[disabled].tagify--select, .tagify[readonly].tagify--select {
  pointer-events: none;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select), .tagify[readonly]:not(.tagify--mix):not(.tagify--select) {
  cursor: default;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) > .tagify__input, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div {
  padding: var(--tag-pad);
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify[disabled] .tagify__tag__removeBtn, .tagify[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify--loading .tagify__input > br:last-child {
  display: none;
}

.tagify--loading .tagify__input::before {
  content: none;
}

.tagify--loading .tagify__input::after {
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  content: "" !important;
  margin: -2px 0 -2px 0.5em;
}

.tagify--loading .tagify__input:empty::after {
  margin-left: 0;
}

.tagify + input, .tagify + textarea {
  position: absolute !important;
  left: -9999em !important;
  transform: scale(0) !important;
}

.tagify__tag {
  display: inline-flex;
  align-items: center;
  max-width: var(--tag--max-width);
  margin-inline: 5px 0;
  margin-block: 5px;
  position: relative;
  z-index: 1;
  outline: 0;
  line-height: normal;
  cursor: default;
  transition: 0.13s ease-out;
}

.tagify__tag > div {
  display: flex;
  flex: 1;
  vertical-align: top;
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--tag-pad);
  color: var(--tag-text-color);
  line-height: inherit;
  border-radius: var(--tag-border-radius);
  white-space: nowrap;
  transition: 0.13s ease-out;
}

.tagify__tag > div > * {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: var(--tag--min-width);
  max-width: var(--tag--max-width);
  transition: 0.8s ease, 0.1s color;
}

.tagify__tag > div > [contenteditable] {
  display: block;
  outline: 0;
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
  margin: -2px;
  padding: 2px;
  max-width: 350px;
}

.tagify__tag > div > :only-child {
  width: 100%;
}

.tagify__tag > div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: tags--bump 0.3s ease-out 1;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
}

.tagify__tag:focus div::before, .tagify__tag:hover:not([readonly]) div::before {
  --tag-bg-inset:-2.5px;
  --tag-bg:var(--tag-hover);
}

.tagify__tag--loading {
  pointer-events: none;
}

.tagify__tag--loading .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag--loading::after {
  --loader-size:.4em;
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  margin: 0 0.5em 0 -0.1em;
}

.tagify__tag--flash div::before {
  animation: none;
}

.tagify__tag--hide {
  width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: var(--tag-hide-transition);
  pointer-events: none;
}

.tagify__tag--hide > div > * {
  white-space: nowrap;
}

.tagify__tag.tagify--noAnim > div::before {
  animation: none;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div > span {
  opacity: 0.5;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before {
  --tag-bg:var(--tag-invalid-bg);
  transition: 0.2s;
}

.tagify__tag[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag[readonly] > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify__tag--editable > div {
  color: var(--tag-text-color--edit);
}

.tagify__tag--editable > div::before {
  box-shadow: 0 0 0 2px var(--tag-hover) inset !important;
}

.tagify__tag--editable > .tagify__tag__removeBtn {
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}

.tagify__tag--editable.tagify--invalid > div::before {
  box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important;
}

.tagify__tag__removeBtn {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font: 14px/1 Arial;
  background: var(--tag-remove-btn-bg);
  color: var(--tag-remove-btn-color);
  width: 14px;
  height: 14px;
  margin-inline: auto 4.6666666667px;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.tagify__tag__removeBtn::after {
  content: "×";
  transition: 0.3s, color 0s;
}

.tagify__tag__removeBtn:hover {
  color: #fff;
  background: var(--tag-remove-btn-bg--hover);
}

.tagify__tag__removeBtn:hover + div > span {
  opacity: 0.5;
}

.tagify__tag__removeBtn:hover + div::before {
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, rgba(211, 148, 148, 0.3)) inset !important;
  transition: box-shadow 0.2s;
}

.tagify:not(.tagify--mix) .tagify__input br {
  display: none;
}

.tagify:not(.tagify--mix) .tagify__input * {
  display: inline;
  white-space: nowrap;
}

.tagify__input {
  flex-grow: 1;
  display: inline-block;
  min-width: 110px;
  margin: 5px;
  padding: var(--tag-pad);
  line-height: normal;
  position: relative;
  white-space: pre-wrap;
  color: var(--input-color);
  box-sizing: inherit;
  overflow: hidden;
}

.tagify__input:focus {
  outline: 0;
}

.tagify__input:focus::before {
  transition: 0.2s ease-out;
  opacity: 0;
  transform: translatex(6px);
}

@supports (-ms-ime-align: auto) {
  .tagify__input:focus::before {
    display: none;
  }
}
.tagify__input:focus:empty::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  color: rgba(0, 0, 0, 0.25);
  color: var(--placeholder-color-focus);
}

@-moz-document url-prefix() {
  .tagify__input:focus:empty::after {
    display: none;
  }
}
.tagify__input::before {
  content: attr(data-placeholder);
  width: 100%;
  height: 100%;
  margin: auto 0;
  z-index: 1;
  color: var(--placeholder-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.tagify__input::after {
  content: attr(data-suggest);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  min-width: calc(100% - 1.5em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  color: var(--tag-text-color);
  opacity: 0.3;
  pointer-events: none;
  max-width: 100px;
}

.tagify__input .tagify__tag {
  margin: 0 1px;
}

.tagify--mix {
  display: block;
}

.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  display: block;
}

.tagify--mix .tagify__input::before {
  height: auto;
  display: none;
  line-height: inherit;
}

.tagify--mix .tagify__input::after {
  content: none;
}

.tagify--select {
  cursor: default;
}

.tagify--select::after {
  content: ">";
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font: 16px monospace;
  line-height: 8px;
  height: 8px;
  pointer-events: none;
  transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
  transition: 0.2s ease-in-out;
}

.tagify--select[aria-expanded=true]::after {
  transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2);
}

.tagify--select[aria-expanded=true] .tagify__tag__removeBtn {
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}

.tagify--select .tagify__tag {
  flex: 1;
  max-width: none;
  margin-inline-end: 2em;
  margin-block: 0;
  padding-block: 5px;
  cursor: text;
}

.tagify--select .tagify__tag div::before {
  display: none;
}

.tagify--select .tagify__tag + .tagify__input {
  display: none;
}

.tagify--empty .tagify__input::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  display: inline-block;
  width: auto;
}

.tagify--mix .tagify--empty .tagify__input::before {
  display: inline-block;
}

.tagify--focus {
  --tags-border-color:var(--tags-focus-border-color);
  transition: 0s;
}

.tagify--invalid {
  --tags-border-color:#D39494;
}

.tagify__dropdown {
  position: absolute;
  z-index: 9999;
  transform: translateY(-1px);
  border-top: 1px solid var(--tagify-dd-color-primary);
  overflow: hidden;
}

.tagify__dropdown[dir=rtl] {
  transform: translate(-100%, -1px);
}

.tagify__dropdown[placement=top] {
  margin-top: 0;
  transform: translateY(-100%);
}

.tagify__dropdown[placement=top] .tagify__dropdown__wrapper {
  border-top-width: 1.1px;
  border-bottom-width: 0;
}

.tagify__dropdown[position=text] {
  box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), 0.1);
  font-size: 0.9em;
}

.tagify__dropdown[position=text] .tagify__dropdown__wrapper {
  border-width: 1px;
}

.tagify__dropdown__wrapper {
  scroll-behavior: auto;
  max-height: var(--tagify-dd-max-height);
  overflow: hidden;
  overflow-x: hidden;
  color: var(--tagify-dd-text-color);
  background: var(--tagify-dd-bg-color);
  border: 1px solid;
  border-color: var(--tagify-dd-color-primary);
  border-bottom-width: 1.5px;
  border-top-width: 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.5, 0, 0.3, 1), transform 0.15s;
  animation: dd-wrapper-show 0s 0.3s forwards;
}

@keyframes dd-wrapper-show {
  to {
    overflow-y: auto;
  }
}
.tagify__dropdown__header:empty {
  display: none;
}

.tagify__dropdown__footer {
  display: inline-block;
  margin-top: 0.5em;
  padding: var(--tagify-dd-item-pad);
  font-size: 0.7em;
  font-style: italic;
  opacity: 0.5;
}

.tagify__dropdown__footer:empty {
  display: none;
}

.tagify__dropdown--initial .tagify__dropdown__wrapper {
  max-height: 20px;
  transform: translateY(-1em);
}

.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper {
  transform: translateY(2em);
}

.tagify__dropdown__item {
  box-sizing: border-box;
  padding: var(--tagify-dd-item-pad);
  margin: 1px;
  white-space: pre-wrap;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  outline: 0;
  max-height: 60px;
  max-width: 100%;
  line-height: normal;
  position: relative;
}

.tagify__dropdown__item--active {
  background: var(--tagify-dd-color-primary);
  color: #fff;
}

.tagify__dropdown__item:active {
  filter: brightness(105%);
}

.tagify__dropdown__item--hidden {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 1px;
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--tagify-dd-item--hidden-duration, 0.3s) !important;
}

.tagify__dropdown__item--hidden > * {
  transform: translateY(-100%);
  opacity: 0;
  transition: inherit;
}

.tagify__dropdown__item--selected::before {
  content: "✓";
  font-family: monospace;
  position: absolute;
  inset-inline-start: 6px;
  text-indent: 0;
  line-height: 1.1;
}

.tagify__dropdown:has(.tagify__dropdown__item--selected) .tagify__dropdown__item {
  text-indent: 1em;
}

.pagy{
  display:flex;
}

.pagy > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-right:calc(0.25rem * var(--tw-space-x-reverse));
  margin-left:calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.pagy{
  font-size:0.875rem;
  line-height:1.25rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.pagy a:not(.gap){
  display:block;
  border-radius:0.5rem;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.pagy a:not(.gap):hover{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.pagy a:not(.gap):not([href]) {
  /* disabled links */
  cursor:default;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.pagy a:not(.gap).current{
  --tw-bg-opacity:1;
  background-color:rgba(156, 163, 175, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.pagy label{
  display:inline-block;
  white-space:nowrap;
  border-radius:0.5rem;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.125rem;
  padding-bottom:0.125rem;
}
.pagy label input{
  border-radius:0.375rem;
  border-style:none;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}

/* ! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
	box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
	-moz-tab-size: 4;
	tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
	margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
	font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
	text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

:-moz-focusring {
	outline: auto;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-translate-x:0;
  --tw-translate-y:0;
  --tw-rotate:0;
  --tw-skew-x:0;
  --tw-skew-y:0;
  --tw-scale-x:1;
  --tw-scale-y:1;
  --tw-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-ring-offset-shadow:0 0 #0000;
  --tw-ring-shadow:0 0 #0000;
  --tw-shadow:0 0 #0000;
  --tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width:0px;
  --tw-ring-offset-color:#fff;
  --tw-ring-color:rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow:0 0 #0000;
  --tw-ring-shadow:0 0 #0000;
  --tw-shadow:0 0 #0000;
  --tw-blur:var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness:var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast:var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale:var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/);
  --tw-invert:var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate:var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia:var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/);
  --tw-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.container{
  width:100%;
}
@media (min-width: 640px){
  .container{
    max-width:640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width:768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width:1024px;
  }
}
@media (min-width: 1152px){
  .container{
    max-width:1152px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width:1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width:1536px;
  }
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border-width:0;
}
.pointer-events-none{
  pointer-events:none;
}
.pointer-events-auto{
  pointer-events:auto;
}
.visible{
  visibility:visible;
}
.\!visible{
  visibility:visible !important;
}
.invisible{
  visibility:hidden;
}
.static{
  position:static;
}
.fixed{
  position:fixed;
}
.absolute{
  position:absolute;
}
.relative{
  position:relative;
}
.inset-0{
  top:0px;
  right:0px;
  bottom:0px;
  left:0px;
}
.inset-y-0{
  top:0px;
  bottom:0px;
}
.bottom-5{
  bottom:1.25rem;
}
.right-0{
  right:0px;
}
.left-0{
  left:0px;
}
.left-4{
  left:1rem;
}
.top-4{
  top:1rem;
}
.right-5{
  right:1.25rem;
}
.bottom-6{
  bottom:1.5rem;
}
.-left-4{
  left:-1rem;
}
.bottom-0{
  bottom:0px;
}
.top-0{
  top:0px;
}
.z-10{
  z-index:10;
}
.z-50{
  z-index:50;
}
.col-span-1{
  grid-column:span 1 / span 1;
}
.float-right{
  float:right;
}
.mx-auto{
  margin-left:auto;
  margin-right:auto;
}
.my-4{
  margin-top:1rem;
  margin-bottom:1rem;
}
.mx-2{
  margin-left:0.5rem;
  margin-right:0.5rem;
}
.mx-8{
  margin-left:2rem;
  margin-right:2rem;
}
.mx-4{
  margin-left:1rem;
  margin-right:1rem;
}
.my-5{
  margin-top:1.25rem;
  margin-bottom:1.25rem;
}
.my-1{
  margin-top:0.25rem;
  margin-bottom:0.25rem;
}
.my-14{
  margin-top:3.5rem;
  margin-bottom:3.5rem;
}
.mx-5{
  margin-left:1.25rem;
  margin-right:1.25rem;
}
.my-2{
  margin-top:0.5rem;
  margin-bottom:0.5rem;
}
.my-6{
  margin-top:1.5rem;
  margin-bottom:1.5rem;
}
.mx-0{
  margin-left:0px;
  margin-right:0px;
}
.mr-20{
  margin-right:5rem;
}
.mr-1{
  margin-right:0.25rem;
}
.mt-5{
  margin-top:1.25rem;
}
.mt-10{
  margin-top:2.5rem;
}
.mt-20{
  margin-top:5rem;
}
.mt-8{
  margin-top:2rem;
}
.mt-4{
  margin-top:1rem;
}
.mt-6{
  margin-top:1.5rem;
}
.mt-2{
  margin-top:0.5rem;
}
.mb-4{
  margin-bottom:1rem;
}
.mb-6{
  margin-bottom:1.5rem;
}
.mb-10{
  margin-bottom:2.5rem;
}
.ml-1\.5{
  margin-left:0.375rem;
}
.ml-1{
  margin-left:0.25rem;
}
.mb-5{
  margin-bottom:1.25rem;
}
.ml-5{
  margin-left:1.25rem;
}
.mr-2{
  margin-right:0.5rem;
}
.mr-3{
  margin-right:0.75rem;
}
.mb-8{
  margin-bottom:2rem;
}
.-ml-px{
  margin-left:-1px;
}
.ml-3{
  margin-left:0.75rem;
}
.mr-4{
  margin-right:1rem;
}
.mt-1{
  margin-top:0.25rem;
}
.ml-4{
  margin-left:1rem;
}
.ml-2{
  margin-left:0.5rem;
}
.mt-3{
  margin-top:0.75rem;
}
.mt-12{
  margin-top:3rem;
}
.mb-2{
  margin-bottom:0.5rem;
}
.mb-1{
  margin-bottom:0.25rem;
}
.ml-24{
  margin-left:6rem;
}
.ml-10{
  margin-left:2.5rem;
}
.ml-auto{
  margin-left:auto;
}
.-mr-2{
  margin-right:-0.5rem;
}
.-mr-1{
  margin-right:-0.25rem;
}
.block{
  display:block;
}
.inline-block{
  display:inline-block;
}
.inline{
  display:inline;
}
.flex{
  display:flex;
}
.inline-flex{
  display:inline-flex;
}
.table{
  display:table;
}
.grid{
  display:grid;
}
.contents{
  display:contents;
}
.hidden{
  display:none;
}
.h-4{
  height:1rem;
}
.h-\[calc\(100vh-80px\)\]{
  height:calc(100vh - 80px);
}
.h-16{
  height:4rem;
}
.h-full{
  height:100%;
}
.h-screen{
  height:100vh;
}
.h-8{
  height:2rem;
}
.h-5{
  height:1.25rem;
}
.h-6{
  height:1.5rem;
}
.h-32{
  height:8rem;
}
.h-3\.5{
  height:0.875rem;
}
.h-3{
  height:0.75rem;
}
.min-h-full{
  min-height:100%;
}
.min-h-screen{
  min-height:100vh;
}
.w-4{
  width:1rem;
}
.w-96{
  width:24rem;
}
.w-full{
  width:100%;
}
.w-16{
  width:4rem;
}
.w-0\.5{
  width:0.125rem;
}
.w-0{
  width:0px;
}
.w-8{
  width:2rem;
}
.w-5{
  width:1.25rem;
}
.w-6{
  width:1.5rem;
}
.w-screen{
  width:100vw;
}
.w-48{
  width:12rem;
}
.w-1\/12{
  width:8.333333%;
}
.w-max{
  width:max-content;
}
.w-1\/2{
  width:50%;
}
.w-12{
  width:3rem;
}
.w-3\.5{
  width:0.875rem;
}
.w-3{
  width:0.75rem;
}
.min-w-0{
  min-width:0px;
}
.min-w-\[32rem\]{
  min-width:32rem;
}
.max-w-xl{
  max-width:36rem;
}
.max-w-sm{
  max-width:24rem;
}
.max-w-md{
  max-width:28rem;
}
.max-w-lg{
  max-width:32rem;
}
.max-w-\[95\%\]{
  max-width:95%;
}
.max-w-\[100px\]{
  max-width:100px;
}
.max-w-4xl{
  max-width:56rem;
}
.max-w-2xl{
  max-width:42rem;
}
.flex-auto{
  flex:1 1 auto;
}
.flex-none{
  flex:none;
}
.flex-1{
  flex:1 1 0%;
}
.flex-shrink-0{
  flex-shrink:0;
}
.flex-grow{
  flex-grow:1;
}
.table-fixed{
  table-layout:fixed;
}
.translate-y-2{
  --tw-translate-y:0.5rem;
  transform:var(--tw-transform);
}
.translate-y-0{
  --tw-translate-y:0px;
  transform:var(--tw-transform);
}
.transform{
  transform:var(--tw-transform);
}
@keyframes pulse{
  50%{
    opacity:.5;
  }
}
.animate-pulse{
  animation:pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}
.animate-spin{
  animation:spin 1s linear infinite;
}
.cursor-pointer{
  cursor:pointer;
}
.appearance-none{
  appearance:none;
}
.grid-cols-1{
  grid-template-columns:repeat(1, minmax(0, 1fr));
}
.flex-col{
  flex-direction:column;
}
.items-start{
  align-items:flex-start;
}
.items-end{
  align-items:flex-end;
}
.items-center{
  align-items:center;
}
.justify-start{
  justify-content:flex-start;
}
.justify-end{
  justify-content:flex-end;
}
.justify-center{
  justify-content:center;
}
.justify-between{
  justify-content:space-between;
}
.justify-around{
  justify-content:space-around;
}
.gap-3{
  gap:0.75rem;
}
.gap-4{
  gap:1rem;
}
.gap-8{
  gap:2rem;
}
.gap-6{
  gap:1.5rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(1rem * var(--tw-space-y-reverse));
}
.-space-y-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(-1px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(-1px * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(2rem * var(--tw-space-y-reverse));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-right:calc(0.75rem * var(--tw-space-x-reverse));
  margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-right:calc(1rem * var(--tw-space-x-reverse));
  margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-right:calc(0.5rem * var(--tw-space-x-reverse));
  margin-left:calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(0.5rem * var(--tw-space-y-reverse));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-right:calc(1.5rem * var(--tw-space-x-reverse));
  margin-left:calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.divide-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse:0;
  border-top-width:calc(2px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width:calc(2px * var(--tw-divide-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse:0;
  border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width:calc(1px * var(--tw-divide-y-reverse));
}
.divide-solid > :not([hidden]) ~ :not([hidden]){
  border-style:solid;
}
.divide-gray-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-divide-opacity));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-divide-opacity));
}
.self-end{
  align-self:flex-end;
}
.self-center{
  align-self:center;
}
.overflow-auto{
  overflow:auto;
}
.overflow-hidden{
  overflow:hidden;
}
.overflow-y-auto{
  overflow-y:auto;
}
.overflow-x-hidden{
  overflow-x:hidden;
}
.overflow-y-scroll{
  overflow-y:scroll;
}
.truncate{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.whitespace-nowrap{
  white-space:nowrap;
}
.rounded{
  border-radius:0.25rem;
}
.rounded-full{
  border-radius:9999px;
}
.rounded-md{
  border-radius:0.375rem;
}
.rounded-lg{
  border-radius:0.5rem;
}
.rounded-sm{
  border-radius:0.125rem;
}
.rounded-t{
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}
.rounded-b{
  border-bottom-right-radius:0.25rem;
  border-bottom-left-radius:0.25rem;
}
.rounded-t-lg{
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
}
.border{
  border-width:1px;
}
.border-2{
  border-width:2px;
}
.border-b{
  border-bottom-width:1px;
}
.border-r-0{
  border-right-width:0px;
}
.border-t-4{
  border-top-width:4px;
}
.border-dashed{
  border-style:dashed;
}
.border-none{
  border-style:none;
}
.border-gray-300{
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
}
.border-yellow-400{
  --tw-border-opacity:1;
  border-color:rgba(251, 191, 36, var(--tw-border-opacity));
}
.border-green-400{
  --tw-border-opacity:1;
  border-color:rgba(52, 211, 153, var(--tw-border-opacity));
}
.border-red-400{
  --tw-border-opacity:1;
  border-color:rgba(248, 113, 113, var(--tw-border-opacity));
}
.border-blue-200{
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
}
.border-blue-500{
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
}
.border-gray-200{
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
}
.border-gray-100{
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.border-blue-300{
  --tw-border-opacity:1;
  border-color:rgba(147, 197, 253, var(--tw-border-opacity));
}
.bg-gray-500{
  --tw-bg-opacity:1;
  background-color:rgba(107, 114, 128, var(--tw-bg-opacity));
}
.bg-green-300{
  --tw-bg-opacity:1;
  background-color:rgba(110, 231, 183, var(--tw-bg-opacity));
}
.bg-gray-200{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
.bg-gray-50{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.bg-yellow-100{
  --tw-bg-opacity:1;
  background-color:rgba(254, 243, 199, var(--tw-bg-opacity));
}
.bg-yellow-200{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
}
.bg-red-100{
  --tw-bg-opacity:1;
  background-color:rgba(254, 226, 226, var(--tw-bg-opacity));
}
.bg-red-200{
  --tw-bg-opacity:1;
  background-color:rgba(254, 202, 202, var(--tw-bg-opacity));
}
.bg-blue-50{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
}
.bg-red-500{
  --tw-bg-opacity:1;
  background-color:rgba(239, 68, 68, var(--tw-bg-opacity));
}
.bg-transparent{
  background-color:transparent;
}
.bg-white{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-blue-600{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
}
.bg-green-100{
  --tw-bg-opacity:1;
  background-color:rgba(209, 250, 229, var(--tw-bg-opacity));
}
.bg-blue-400{
  --tw-bg-opacity:1;
  background-color:rgba(96, 165, 250, var(--tw-bg-opacity));
}
.bg-blue-500{
  --tw-bg-opacity:1;
  background-color:rgba(59, 130, 246, var(--tw-bg-opacity));
}
.bg-gray-400{
  --tw-bg-opacity:1;
  background-color:rgba(156, 163, 175, var(--tw-bg-opacity));
}
.bg-gray-600{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.bg-gray-100{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.bg-gray-300{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.bg-yellow-500{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.bg-gray-800{
  --tw-bg-opacity:1;
  background-color:rgba(31, 41, 55, var(--tw-bg-opacity));
}
.bg-blue-200{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}
.bg-blue-100{
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
}
.bg-blue-700{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.bg-gray-900{
  --tw-bg-opacity:1;
  background-color:rgba(17, 24, 39, var(--tw-bg-opacity));
}
.bg-opacity-75{
  --tw-bg-opacity:0.75;
}
.fill-current{
  fill:currentColor;
}
.p-5{
  padding:1.25rem;
}
.p-4{
  padding:1rem;
}
.p-6{
  padding:1.5rem;
}
.p-3{
  padding:0.75rem;
}
.p-20{
  padding:5rem;
}
.p-1{
  padding:0.25rem;
}
.p-2{
  padding:0.5rem;
}
.p-1\.5{
  padding:0.375rem;
}
.p-2\.5{
  padding:0.625rem;
}
.px-4{
  padding-left:1rem;
  padding-right:1rem;
}
.py-2{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.py-3{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
}
.px-2{
  padding-left:0.5rem;
  padding-right:0.5rem;
}
.py-4{
  padding-top:1rem;
  padding-bottom:1rem;
}
.py-16{
  padding-top:4rem;
  padding-bottom:4rem;
}
.px-10{
  padding-left:2.5rem;
  padding-right:2.5rem;
}
.px-6{
  padding-left:1.5rem;
  padding-right:1.5rem;
}
.py-1{
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.py-5{
  padding-top:1.25rem;
  padding-bottom:1.25rem;
}
.px-3{
  padding-left:0.75rem;
  padding-right:0.75rem;
}
.py-6{
  padding-top:1.5rem;
  padding-bottom:1.5rem;
}
.py-1\.5{
  padding-top:0.375rem;
  padding-bottom:0.375rem;
}
.px-1\.5{
  padding-left:0.375rem;
  padding-right:0.375rem;
}
.px-1{
  padding-left:0.25rem;
  padding-right:0.25rem;
}
.py-0\.5{
  padding-top:0.125rem;
  padding-bottom:0.125rem;
}
.py-0{
  padding-top:0px;
  padding-bottom:0px;
}
.px-5{
  padding-left:1.25rem;
  padding-right:1.25rem;
}
.py-2\.5{
  padding-top:0.625rem;
  padding-bottom:0.625rem;
}
.px-2\.5{
  padding-left:0.625rem;
  padding-right:0.625rem;
}
.pt-4{
  padding-top:1rem;
}
.pb-4{
  padding-bottom:1rem;
}
.pb-16{
  padding-bottom:4rem;
}
.pt-20{
  padding-top:5rem;
}
.pb-5{
  padding-bottom:1.25rem;
}
.pb-8{
  padding-bottom:2rem;
}
.pb-12{
  padding-bottom:3rem;
}
.pt-1\.5{
  padding-top:0.375rem;
}
.pt-1{
  padding-top:0.25rem;
}
.pt-0\.5{
  padding-top:0.125rem;
}
.pt-0{
  padding-top:0px;
}
.pt-5{
  padding-top:1.25rem;
}
.pl-2{
  padding-left:0.5rem;
}
.pl-5{
  padding-left:1.25rem;
}
.pr-4{
  padding-right:1rem;
}
.pb-2{
  padding-bottom:0.5rem;
}
.pr-2{
  padding-right:0.5rem;
}
.text-left{
  text-align:left;
}
.text-center{
  text-align:center;
}
.text-right{
  text-align:right;
}
.font-sans{
  font-family:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-sm{
  font-size:0.875rem;
  line-height:1.25rem;
}
.text-\[36px\]{
  font-size:36px;
}
.text-xl{
  font-size:1.25rem;
  line-height:1.75rem;
}
.text-base{
  font-size:1rem;
  line-height:1.5rem;
}
.text-lg{
  font-size:1.125rem;
  line-height:1.75rem;
}
.text-2xl{
  font-size:1.5rem;
  line-height:2rem;
}
.text-xs{
  font-size:0.75rem;
  line-height:1rem;
}
.font-bold{
  font-weight:700;
}
.font-medium{
  font-weight:500;
}
.font-semibold{
  font-weight:600;
}
.font-light{
  font-weight:300;
}
.lowercase{
  text-transform:lowercase;
}
.capitalize{
  text-transform:capitalize;
}
.leading-6{
  line-height:1.5rem;
}
.text-gray-500{
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.text-gray-400{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-red-500{
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}
.text-blue-600{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.text-gray-800{
  --tw-text-opacity:1;
  color:rgba(31, 41, 55, var(--tw-text-opacity));
}
.text-blue-500{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.text-gray-900{
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
}
.text-blue-800{
  --tw-text-opacity:1;
  color:rgba(30, 64, 175, var(--tw-text-opacity));
}
.text-gray-700{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.text-yellow-700{
  --tw-text-opacity:1;
  color:rgba(180, 83, 9, var(--tw-text-opacity));
}
.text-green-700{
  --tw-text-opacity:1;
  color:rgba(4, 120, 87, var(--tw-text-opacity));
}
.text-red-700{
  --tw-text-opacity:1;
  color:rgba(185, 28, 28, var(--tw-text-opacity));
}
.text-blue-700{
  --tw-text-opacity:1;
  color:rgba(29, 78, 216, var(--tw-text-opacity));
}
.text-gray-600{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
.text-red-400{
  --tw-text-opacity:1;
  color:rgba(248, 113, 113, var(--tw-text-opacity));
}
.text-purple-600{
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.text-gray-100{
  --tw-text-opacity:1;
  color:rgba(243, 244, 246, var(--tw-text-opacity));
}
.text-blue-900{
  --tw-text-opacity:1;
  color:rgba(30, 58, 138, var(--tw-text-opacity));
}
.text-blue-400{
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}
.text-green-400{
  --tw-text-opacity:1;
  color:rgba(52, 211, 153, var(--tw-text-opacity));
}
.text-black{
  --tw-text-opacity:1;
  color:rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-gray-300{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.text-red-600{
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.text-yellow-500{
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.underline{
  text-decoration:underline;
}
.antialiased{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.opacity-0{
  opacity:0;
}
.shadow{
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow:0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow:0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow:0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow:0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ring-8{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-inset{
  --tw-ring-inset:inset;
}
.ring-white{
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(255, 255, 255, var(--tw-ring-opacity));
}
.ring-gray-300{
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(209, 213, 219, var(--tw-ring-opacity));
}
.ring-black{
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(0, 0, 0, var(--tw-ring-opacity));
}
.ring-opacity-5{
  --tw-ring-opacity:0.05;
}
.blur{
  --tw-blur:blur(8px);
  filter:var(--tw-filter);
}
.grayscale{
  --tw-grayscale:grayscale(100%);
  filter:var(--tw-filter);
}
.invert{
  --tw-invert:invert(100%);
  filter:var(--tw-filter);
}
.sepia{
  --tw-sepia:sepia(100%);
  filter:var(--tw-filter);
}
.filter{
  filter:var(--tw-filter);
}
.transition{
  transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.transition-colors{
  transition-property:background-color, border-color, color, fill, stroke;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.transition-opacity{
  transition-property:opacity;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.transition-all{
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.duration-100{
  transition-duration:100ms;
}
.duration-200{
  transition-duration:200ms;
}
.duration-300{
  transition-duration:300ms;
}
.ease-out{
  transition-timing-function:cubic-bezier(0, 0, 0.2, 1);
}
.ease-in{
  transition-timing-function:cubic-bezier(0.4, 0, 1, 1);
}
* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
* ::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px){
  .main{
    padding-left:0.5rem;
    padding-right:0.5rem;
  }
  .main{
    padding-top:2.5rem;
  }
}

@media (min-width: 1152px){
  .main{
    padding-left:3.5rem;
    padding-right:3.5rem;
  }
}

@media (min-width: 1024px){
  .main{
    position:relative;
  }
  .main{
    padding-left:0.5rem;
    padding-right:0.5rem;
  }
  .main{
    margin-left:260px;
  }
}

@media (min-width: 1280px){
  .main{
    padding-left:3.5rem;
    padding-right:3.5rem;
  }
}
.main > * {
  margin: auto;
}

span.error{
  margin-top:0.25rem;
  margin-bottom:0.25rem;
  display:flex;
  width:100%;
  font-size:0.875rem;
  line-height:1.25rem;
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}

span.field-badge-error{
  margin-top:0.25rem;
  display:flex;
  align-items:center;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:500;
  letter-spacing:0.025em;
  --tw-text-opacity:1;
  color:rgba(248, 113, 113, var(--tw-text-opacity));
}
@media (min-width: 768px){
  span.field-badge-error.inline-error{
    display:inline-block;
  }
}
span.field-badge-error.box-error{
  margin-left:0.25rem;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(254, 226, 226, var(--tw-bg-opacity));
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}

.button{
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  font-size:0.875rem;
  line-height:1.25rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

.button:hover{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.button .icon{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.button.primary{
  border-color:transparent;
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.button.primary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.button.primary .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.button.secondary{
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.button.secondary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
.button.secondary .icon{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.button.cancel{
  --tw-border-opacity:1;
  border-color:rgba(252, 211, 77, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.button.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(251, 191, 36, var(--tw-bg-opacity));
}
.button.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.button.alert{
  --tw-border-opacity:1;
  border-color:rgba(252, 211, 77, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.button.alert:hover{
  --tw-bg-opacity:1;
  background-color:rgba(251, 191, 36, var(--tw-bg-opacity));
}
.button.alert .icon{
  --tw-text-opacity:1;
  color:rgba(217, 119, 6, var(--tw-text-opacity));
}
.button.danger{
  --tw-border-opacity:1;
  border-color:rgba(185, 28, 28, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(185, 28, 28, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.button.danger:hover{
  --tw-bg-opacity:1;
  background-color:rgba(153, 27, 27, var(--tw-bg-opacity));
}
.button.danger:focus{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(252, 165, 165, var(--tw-ring-opacity));
}
.button.danger .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.button.more{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.button.more:hover{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.button.md{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:1rem;
  padding-right:1rem;
}

.button-bar{
  display:flex;
  justify-content:flex-end;
}
.button-bar .button:first-child{
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-bottom-left-radius:0.25rem;
  border-width:1px;
  border-right-width:0px;
}
.button-bar .button:last-child{
  border-radius:0px;
  border-top-right-radius:0.25rem;
  border-bottom-right-radius:0.25rem;
  border-width:1px;
}
.button-bar .button{
  border-radius:0px;
  border-right-width:0px;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}

.button-bar-single{
  margin-left:0.625rem;
  margin-right:0.625rem;
  display:flex;
  justify-content:flex-end;
}

@media (min-width: 768px){
  .button-bar-single{
    margin-left:0px;
    margin-right:0px;
  }
}
.button-bar-single .button{
  border-radius:0.25rem;
}

.authentication-input{
  position:relative;
  margin-top:0.5rem;
  display:block;
  width:100%;
  appearance:none;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.625rem;
  padding-bottom:0.625rem;
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
}

.authentication-input::placeholder{
  --tw-placeholder-opacity:1;
  color:rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.authentication-input:focus{
  z-index:10;
  --tw-border-opacity:1;
  border-color:rgba(99, 102, 241, var(--tw-border-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.authentication-button{
  position:relative;
  display:flex;
  width:100%;
  cursor:pointer;
  justify-content:center;
  border-radius:0.375rem;
  border-width:1px;
  border-color:transparent;
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  font-weight:500;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}

.authentication-button:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}

.authentication-button:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}

.authentication-administrator-button{
  position:relative;
  display:flex;
  width:100%;
  cursor:pointer;
  justify-content:center;
  border-radius:0.375rem;
  border-width:1px;
  border-color:transparent;
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  font-weight:500;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}

.authentication-administrator-button:hover{
  --tw-bg-opacity:1;
  background-color:rgba(185, 28, 28, var(--tw-bg-opacity));
}

.authentication-administrator-button:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}

select#language{
  cursor:pointer;
  appearance:none;
  justify-content:center;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  text-align:center;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
}

select#language::placeholder{
  --tw-placeholder-opacity:1;
  color:rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

select#language:focus{
  z-index:10;
  --tw-border-opacity:1;
  border-color:rgba(99, 102, 241, var(--tw-border-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.disabled{
  cursor:not-allowed;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.disabled .icon{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}

.loading{
  cursor:not-allowed;
}
@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}
.loading .icon{
  animation:spin 1s linear infinite;
}

.pulse{
  cursor:not-allowed;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
@keyframes pulse{
  50%{
    opacity:.5;
  }
}
.pulse .icon{
  animation:pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.processing{
  cursor:not-allowed;
  opacity:0.5;
}

[data-customTooltip] {
  cursor: pointer;
  position: relative;
}

[data-customTooltip]::after {
  background-color: #fff;
  color: #222;
  font-size: 14px;
  padding: 8px 12px;
  height: fit-content;
  width: fit-content;
  border-radius: 3px;
  position: absolute;
  text-align: center;
  bottom: 0px;
  left: 50%;
  content: attr(data-customTooltip);
  transform: translate(-50%, 110%) scale(0);
  transform-origin: top;
  transition: 0.14s;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

[data-customTooltip]:hover:after {
  display: block;
  transform: translate(-50%, 110%) scale(1);
}

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/* This file is automatically generated by `bin/css_build`. Do not edit, */
/* if you want to update this file, please run: `bin/css_build --update-imports`. */
.audit-connections--details{
  position:fixed;
  top:0px;
  right:0px;
  bottom:0px;
  left:0px;
  z-index:50;
  overflow-y:auto;
}
.audit-connections--details .items{
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1rem;
  padding-bottom:1rem;
}
.audit-connections--details .items .port{
  margin-bottom:1rem;
}

.audit-connections--filter{
  position:fixed;
  top:0px;
  right:0px;
  bottom:0px;
  left:0px;
  z-index:50;
  overflow-y:auto;
}
.audit-connections--filter .title{
  font-weight:500;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.audit-connections--filter .items{
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1rem;
  padding-bottom:1rem;
}
.audit-connections--filter .items label{
  margin-bottom:0.25rem;
  display:block;
  text-align:left;
  font-weight:500;
  text-transform:capitalize;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}

.ui--event-status.pending, .pending.state, .ui--table .table-wrapper .pending.state, .workstations--index .table-wrapper .pending.state, .realms--index .table-wrapper .pending.state, .realm-events--show-component .table-wrapper .pending.state, .realm-events--index-component .table-wrapper .pending.state, .operators--index .table-wrapper .pending.state, .operator-accesses--index-component .table-wrapper .pending.state, .internal--realm-events--index-component .table-wrapper .pending.state, .internal--events--index .table-wrapper .pending.state, .files--index .table-wrapper .pending.state, .devices--index .table-wrapper .pending.state, .events--index-component .table-wrapper .pending.state, .accesses--index-component .table-wrapper .pending.state, .connections--index-component .table-wrapper .pending.state, .audit--connections--index--component .table-wrapper .pending.state{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.ui--event-status.executed, .executed.state, .ui--table .table-wrapper .executed.state, .workstations--index .table-wrapper .executed.state, .realms--index .table-wrapper .executed.state, .realm-events--show-component .table-wrapper .executed.state, .realm-events--index-component .table-wrapper .executed.state, .operators--index .table-wrapper .executed.state, .operator-accesses--index-component .table-wrapper .executed.state, .internal--realm-events--index-component .table-wrapper .executed.state, .internal--events--index .table-wrapper .executed.state, .files--index .table-wrapper .executed.state, .devices--index .table-wrapper .executed.state, .events--index-component .table-wrapper .executed.state, .accesses--index-component .table-wrapper .executed.state, .connections--index-component .table-wrapper .executed.state, .audit--connections--index--component .table-wrapper .executed.state{
  --tw-bg-opacity:1;
  background-color:rgba(236, 253, 245, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(5, 150, 105, var(--tw-text-opacity));
}
.ui--event-status.in_progress, .in_progress.state, .ui--table .table-wrapper .in_progress.state, .workstations--index .table-wrapper .in_progress.state, .realms--index .table-wrapper .in_progress.state, .realm-events--show-component .table-wrapper .in_progress.state, .realm-events--index-component .table-wrapper .in_progress.state, .operators--index .table-wrapper .in_progress.state, .operator-accesses--index-component .table-wrapper .in_progress.state, .internal--realm-events--index-component .table-wrapper .in_progress.state, .internal--events--index .table-wrapper .in_progress.state, .files--index .table-wrapper .in_progress.state, .devices--index .table-wrapper .in_progress.state, .events--index-component .table-wrapper .in_progress.state, .accesses--index-component .table-wrapper .in_progress.state, .connections--index-component .table-wrapper .in_progress.state, .audit--connections--index--component .table-wrapper .in_progress.state{
  --tw-bg-opacity:1;
  background-color:rgba(245, 243, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.ui--event-status.incompleted, .incompleted.state, .ui--table .table-wrapper .incompleted.state, .workstations--index .table-wrapper .incompleted.state, .realms--index .table-wrapper .incompleted.state, .realm-events--show-component .table-wrapper .incompleted.state, .realm-events--index-component .table-wrapper .incompleted.state, .operators--index .table-wrapper .incompleted.state, .operator-accesses--index-component .table-wrapper .incompleted.state, .internal--realm-events--index-component .table-wrapper .incompleted.state, .internal--events--index .table-wrapper .incompleted.state, .files--index .table-wrapper .incompleted.state, .devices--index .table-wrapper .incompleted.state, .events--index-component .table-wrapper .incompleted.state, .accesses--index-component .table-wrapper .incompleted.state, .connections--index-component .table-wrapper .incompleted.state, .audit--connections--index--component .table-wrapper .incompleted.state{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.ui--event-status.failed, .failed.state, .ui--table .table-wrapper .failed.state, .workstations--index .table-wrapper .failed.state, .realms--index .table-wrapper .failed.state, .realm-events--show-component .table-wrapper .failed.state, .realm-events--index-component .table-wrapper .failed.state, .operators--index .table-wrapper .failed.state, .operator-accesses--index-component .table-wrapper .failed.state, .internal--realm-events--index-component .table-wrapper .failed.state, .internal--events--index .table-wrapper .failed.state, .files--index .table-wrapper .failed.state, .devices--index .table-wrapper .failed.state, .events--index-component .table-wrapper .failed.state, .accesses--index-component .table-wrapper .failed.state, .connections--index-component .table-wrapper .failed.state, .audit--connections--index--component .table-wrapper .failed.state{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.ui--event-status.overridden, .overridden.state, .ui--table .table-wrapper .overridden.state, .workstations--index .table-wrapper .overridden.state, .realms--index .table-wrapper .overridden.state, .realm-events--show-component .table-wrapper .overridden.state, .realm-events--index-component .table-wrapper .overridden.state, .operators--index .table-wrapper .overridden.state, .operator-accesses--index-component .table-wrapper .overridden.state, .internal--realm-events--index-component .table-wrapper .overridden.state, .internal--events--index .table-wrapper .overridden.state, .files--index .table-wrapper .overridden.state, .devices--index .table-wrapper .overridden.state, .events--index-component .table-wrapper .overridden.state, .accesses--index-component .table-wrapper .overridden.state, .connections--index-component .table-wrapper .overridden.state, .audit--connections--index--component .table-wrapper .overridden.state{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}

.ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
    width:100%;
  }
  @media (min-width: 640px){
    .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .ui--table, .workstations--index, .realms--index, .realm-events--show-component, .realm-events--index-component, .operators--index, .operator-accesses--index-component, .internal--realm-events--index-component, .internal--events--index, .files--index, .devices--index, .events--index-component, .accesses--index-component, .connections--index-component, .audit--connections--index--component{
      max-width:1536px;
    }
  }
}
.ui--table .table-wrapper, .workstations--index .table-wrapper, .realms--index .table-wrapper, .realm-events--show-component .table-wrapper, .realm-events--index-component .table-wrapper, .operators--index .table-wrapper, .operator-accesses--index-component .table-wrapper, .internal--realm-events--index-component .table-wrapper, .internal--events--index .table-wrapper, .files--index .table-wrapper, .devices--index .table-wrapper, .events--index-component .table-wrapper, .accesses--index-component .table-wrapper, .connections--index-component .table-wrapper, .audit--connections--index--component .table-wrapper{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.ui--table .table-wrapper .table-head, .workstations--index .table-wrapper .table-head, .realms--index .table-wrapper .table-head, .realm-events--show-component .table-wrapper .table-head, .realm-events--index-component .table-wrapper .table-head, .operators--index .table-wrapper .table-head, .operator-accesses--index-component .table-wrapper .table-head, .internal--realm-events--index-component .table-wrapper .table-head, .internal--events--index .table-wrapper .table-head, .files--index .table-wrapper .table-head, .devices--index .table-wrapper .table-head, .events--index-component .table-wrapper .table-head, .accesses--index-component .table-wrapper .table-head, .connections--index-component .table-wrapper .table-head, .audit--connections--index--component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.ui--table .table-wrapper .table-head th, .workstations--index .table-wrapper .table-head th, .realms--index .table-wrapper .table-head th, .realm-events--show-component .table-wrapper .table-head th, .realm-events--index-component .table-wrapper .table-head th, .operators--index .table-wrapper .table-head th, .operator-accesses--index-component .table-wrapper .table-head th, .internal--realm-events--index-component .table-wrapper .table-head th, .internal--events--index .table-wrapper .table-head th, .files--index .table-wrapper .table-head th, .devices--index .table-wrapper .table-head th, .events--index-component .table-wrapper .table-head th, .accesses--index-component .table-wrapper .table-head th, .connections--index-component .table-wrapper .table-head th, .audit--connections--index--component .table-wrapper .table-head th{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.ui--table .table-wrapper tbody tr td, .workstations--index .table-wrapper tbody tr td, .realms--index .table-wrapper tbody tr td, .realm-events--show-component .table-wrapper tbody tr td, .realm-events--index-component .table-wrapper tbody tr td, .operators--index .table-wrapper tbody tr td, .operator-accesses--index-component .table-wrapper tbody tr td, .internal--realm-events--index-component .table-wrapper tbody tr td, .internal--events--index .table-wrapper tbody tr td, .files--index .table-wrapper tbody tr td, .devices--index .table-wrapper tbody tr td, .events--index-component .table-wrapper tbody tr td, .accesses--index-component .table-wrapper tbody tr td, .connections--index-component .table-wrapper tbody tr td, .audit--connections--index--component .table-wrapper tbody tr td{
  padding:0px;
}
.ui--table .table-wrapper tbody tr td .overable, .workstations--index .table-wrapper tbody tr td .overable, .realms--index .table-wrapper tbody tr td .overable, .realm-events--show-component .table-wrapper tbody tr td .overable, .realm-events--index-component .table-wrapper tbody tr td .overable, .operators--index .table-wrapper tbody tr td .overable, .operator-accesses--index-component .table-wrapper tbody tr td .overable, .internal--realm-events--index-component .table-wrapper tbody tr td .overable, .internal--events--index .table-wrapper tbody tr td .overable, .files--index .table-wrapper tbody tr td .overable, .devices--index .table-wrapper tbody tr td .overable, .events--index-component .table-wrapper tbody tr td .overable, .accesses--index-component .table-wrapper tbody tr td .overable, .connections--index-component .table-wrapper tbody tr td .overable, .audit--connections--index--component .table-wrapper tbody tr td .overable, .ui--table .table-wrapper tbody tr td .not-overable, .workstations--index .table-wrapper tbody tr td .not-overable, .realms--index .table-wrapper tbody tr td .not-overable, .realm-events--show-component .table-wrapper tbody tr td .not-overable, .realm-events--index-component .table-wrapper tbody tr td .not-overable, .operators--index .table-wrapper tbody tr td .not-overable, .operator-accesses--index-component .table-wrapper tbody tr td .not-overable, .internal--realm-events--index-component .table-wrapper tbody tr td .not-overable, .internal--events--index .table-wrapper tbody tr td .not-overable, .files--index .table-wrapper tbody tr td .not-overable, .devices--index .table-wrapper tbody tr td .not-overable, .events--index-component .table-wrapper tbody tr td .not-overable, .accesses--index-component .table-wrapper tbody tr td .not-overable, .connections--index-component .table-wrapper tbody tr td .not-overable, .audit--connections--index--component .table-wrapper tbody tr td .not-overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
}
.ui--table .table-wrapper tbody tr td .status-led-w, .workstations--index .table-wrapper tbody tr td .status-led-w, .realms--index .table-wrapper tbody tr td .status-led-w, .realm-events--show-component .table-wrapper tbody tr td .status-led-w, .realm-events--index-component .table-wrapper tbody tr td .status-led-w, .operators--index .table-wrapper tbody tr td .status-led-w, .operator-accesses--index-component .table-wrapper tbody tr td .status-led-w, .internal--realm-events--index-component .table-wrapper tbody tr td .status-led-w, .internal--events--index .table-wrapper tbody tr td .status-led-w, .files--index .table-wrapper tbody tr td .status-led-w, .devices--index .table-wrapper tbody tr td .status-led-w, .events--index-component .table-wrapper tbody tr td .status-led-w, .accesses--index-component .table-wrapper tbody tr td .status-led-w, .connections--index-component .table-wrapper tbody tr td .status-led-w, .audit--connections--index--component .table-wrapper tbody tr td .status-led-w{
  padding-top:1rem;
  padding-bottom:1rem;
}
.ui--table .table-wrapper tbody tr:hover td:has(.overable), .workstations--index .table-wrapper tbody tr:hover td:has(.overable), .realms--index .table-wrapper tbody tr:hover td:has(.overable), .realm-events--show-component .table-wrapper tbody tr:hover td:has(.overable), .realm-events--index-component .table-wrapper tbody tr:hover td:has(.overable), .operators--index .table-wrapper tbody tr:hover td:has(.overable), .operator-accesses--index-component .table-wrapper tbody tr:hover td:has(.overable), .internal--realm-events--index-component .table-wrapper tbody tr:hover td:has(.overable), .internal--events--index .table-wrapper tbody tr:hover td:has(.overable), .files--index .table-wrapper tbody tr:hover td:has(.overable), .devices--index .table-wrapper tbody tr:hover td:has(.overable), .events--index-component .table-wrapper tbody tr:hover td:has(.overable), .accesses--index-component .table-wrapper tbody tr:hover td:has(.overable), .connections--index-component .table-wrapper tbody tr:hover td:has(.overable), .audit--connections--index--component .table-wrapper tbody tr:hover td:has(.overable), .ui--table .table-wrapper tbody tr:hover td .overable, .workstations--index .table-wrapper tbody tr:hover td .overable, .realms--index .table-wrapper tbody tr:hover td .overable, .realm-events--show-component .table-wrapper tbody tr:hover td .overable, .realm-events--index-component .table-wrapper tbody tr:hover td .overable, .operators--index .table-wrapper tbody tr:hover td .overable, .operator-accesses--index-component .table-wrapper tbody tr:hover td .overable, .internal--realm-events--index-component .table-wrapper tbody tr:hover td .overable, .internal--events--index .table-wrapper tbody tr:hover td .overable, .files--index .table-wrapper tbody tr:hover td .overable, .devices--index .table-wrapper tbody tr:hover td .overable, .events--index-component .table-wrapper tbody tr:hover td .overable, .accesses--index-component .table-wrapper tbody tr:hover td .overable, .connections--index-component .table-wrapper tbody tr:hover td .overable, .audit--connections--index--component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.ui--table .table-wrapper tr, .workstations--index .table-wrapper tr, .realms--index .table-wrapper tr, .realm-events--show-component .table-wrapper tr, .realm-events--index-component .table-wrapper tr, .operators--index .table-wrapper tr, .operator-accesses--index-component .table-wrapper tr, .internal--realm-events--index-component .table-wrapper tr, .internal--events--index .table-wrapper tr, .files--index .table-wrapper tr, .devices--index .table-wrapper tr, .events--index-component .table-wrapper tr, .accesses--index-component .table-wrapper tr, .connections--index-component .table-wrapper tr, .audit--connections--index--component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.ui--table .table-wrapper tr:last-child, .workstations--index .table-wrapper tr:last-child, .realms--index .table-wrapper tr:last-child, .realm-events--show-component .table-wrapper tr:last-child, .realm-events--index-component .table-wrapper tr:last-child, .operators--index .table-wrapper tr:last-child, .operator-accesses--index-component .table-wrapper tr:last-child, .internal--realm-events--index-component .table-wrapper tr:last-child, .internal--events--index .table-wrapper tr:last-child, .files--index .table-wrapper tr:last-child, .devices--index .table-wrapper tr:last-child, .events--index-component .table-wrapper tr:last-child, .accesses--index-component .table-wrapper tr:last-child, .connections--index-component .table-wrapper tr:last-child, .audit--connections--index--component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.ui--table .table-wrapper tr:last-child td:first-child .overable, .workstations--index .table-wrapper tr:last-child td:first-child .overable, .realms--index .table-wrapper tr:last-child td:first-child .overable, .realm-events--show-component .table-wrapper tr:last-child td:first-child .overable, .realm-events--index-component .table-wrapper tr:last-child td:first-child .overable, .operators--index .table-wrapper tr:last-child td:first-child .overable, .operator-accesses--index-component .table-wrapper tr:last-child td:first-child .overable, .internal--realm-events--index-component .table-wrapper tr:last-child td:first-child .overable, .internal--events--index .table-wrapper tr:last-child td:first-child .overable, .files--index .table-wrapper tr:last-child td:first-child .overable, .devices--index .table-wrapper tr:last-child td:first-child .overable, .events--index-component .table-wrapper tr:last-child td:first-child .overable, .accesses--index-component .table-wrapper tr:last-child td:first-child .overable, .connections--index-component .table-wrapper tr:last-child td:first-child .overable, .audit--connections--index--component .table-wrapper tr:last-child td:first-child .overable, .ui--table .table-wrapper tr:last-child td:first-child .not-overable, .workstations--index .table-wrapper tr:last-child td:first-child .not-overable, .realms--index .table-wrapper tr:last-child td:first-child .not-overable, .realm-events--show-component .table-wrapper tr:last-child td:first-child .not-overable, .realm-events--index-component .table-wrapper tr:last-child td:first-child .not-overable, .operators--index .table-wrapper tr:last-child td:first-child .not-overable, .operator-accesses--index-component .table-wrapper tr:last-child td:first-child .not-overable, .internal--realm-events--index-component .table-wrapper tr:last-child td:first-child .not-overable, .internal--events--index .table-wrapper tr:last-child td:first-child .not-overable, .files--index .table-wrapper tr:last-child td:first-child .not-overable, .devices--index .table-wrapper tr:last-child td:first-child .not-overable, .events--index-component .table-wrapper tr:last-child td:first-child .not-overable, .accesses--index-component .table-wrapper tr:last-child td:first-child .not-overable, .connections--index-component .table-wrapper tr:last-child td:first-child .not-overable, .audit--connections--index--component .table-wrapper tr:last-child td:first-child .not-overable{
  border-bottom-left-radius:0.25rem;
}
.ui--table .table-wrapper tr:last-child td:last-child .overable, .workstations--index .table-wrapper tr:last-child td:last-child .overable, .realms--index .table-wrapper tr:last-child td:last-child .overable, .realm-events--show-component .table-wrapper tr:last-child td:last-child .overable, .realm-events--index-component .table-wrapper tr:last-child td:last-child .overable, .operators--index .table-wrapper tr:last-child td:last-child .overable, .operator-accesses--index-component .table-wrapper tr:last-child td:last-child .overable, .internal--realm-events--index-component .table-wrapper tr:last-child td:last-child .overable, .internal--events--index .table-wrapper tr:last-child td:last-child .overable, .files--index .table-wrapper tr:last-child td:last-child .overable, .devices--index .table-wrapper tr:last-child td:last-child .overable, .events--index-component .table-wrapper tr:last-child td:last-child .overable, .accesses--index-component .table-wrapper tr:last-child td:last-child .overable, .connections--index-component .table-wrapper tr:last-child td:last-child .overable, .audit--connections--index--component .table-wrapper tr:last-child td:last-child .overable, .ui--table .table-wrapper tr:last-child td:last-child .not-overable, .workstations--index .table-wrapper tr:last-child td:last-child .not-overable, .realms--index .table-wrapper tr:last-child td:last-child .not-overable, .realm-events--show-component .table-wrapper tr:last-child td:last-child .not-overable, .realm-events--index-component .table-wrapper tr:last-child td:last-child .not-overable, .operators--index .table-wrapper tr:last-child td:last-child .not-overable, .operator-accesses--index-component .table-wrapper tr:last-child td:last-child .not-overable, .internal--realm-events--index-component .table-wrapper tr:last-child td:last-child .not-overable, .internal--events--index .table-wrapper tr:last-child td:last-child .not-overable, .files--index .table-wrapper tr:last-child td:last-child .not-overable, .devices--index .table-wrapper tr:last-child td:last-child .not-overable, .events--index-component .table-wrapper tr:last-child td:last-child .not-overable, .accesses--index-component .table-wrapper tr:last-child td:last-child .not-overable, .connections--index-component .table-wrapper tr:last-child td:last-child .not-overable, .audit--connections--index--component .table-wrapper tr:last-child td:last-child .not-overable{
  border-bottom-right-radius:0.25rem;
}
.audit--connections--index--component .table-wrapper{
  display:none;
}
@media (min-width: 1024px){
  .audit--connections--index--component .table-wrapper{
    display:block;
  }
}
.audit--connections--index--component .table-wrapper .overable.operator{
  width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
@media (min-width: 1024px){
  .audit--connections--index--component .table-wrapper .overable.operator{
    width:10rem;
  }
}
@media (min-width: 1280px){
  .audit--connections--index--component .table-wrapper .overable.operator{
    width:100%;
  }
}
.audit--connections--index--component tbody .overable, .audit--connections--index--component tbody .not-overable{
  height:3rem;
}
.audit--connections--index--component tbody .overable{
  white-space:nowrap;
}
.audit--connections--index--component tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.25rem;
}
.audit--connections--index--component tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}
.audit--connections--index--component tbody td{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.audit--connections--index--component tbody tr.selected td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.audit--connections--index--component tbody td:first-child,
.audit--connections--index--component tbody th:first-child,
.audit--connections--index--component tbody td:last-child,
.audit--connections--index--component tbody th:last-child,
.audit--connections--index--component thead td:first-child,
.audit--connections--index--component thead th:first-child,
.audit--connections--index--component thead td:last-child,
.audit--connections--index--component thead th:last-child {
  width: 48px;
}
@media (min-width: 1024px){
  .audit--connections--index--component .list-wrapper{
    display:none;
  }
}
.audit--connections--index--component .list-wrapper .connection-item:first-child{
  margin-top:0px;
}
.audit--connections--index--component .list-wrapper .connection-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.audit--connections--index--component .list-wrapper .connection-item .data{
  display:flex;
  align-content:center;
  justify-content:space-between;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.audit--connections--index--component .list-wrapper .connection-item .data .workstation .tag{
  display:inline-block;
  width:2rem;
}
.audit--connections--index--component .list-wrapper .connection-item .name > a, .audit--connections--index--component .list-wrapper .data, .audit--connections--index--component .list-wrapper .location{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  word-break:break-all;
  padding:1.25rem;
}
.audit--connections--index--component .list-wrapper .connection-item .duration{
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}

.connections--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1152px){
  .connections--index-component .mobile-bar{
    display:none;
  }
}
.connections--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.connections--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.connections--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.connections--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.connections--index-component .menu-buttons{
  margin-top:1rem;
  margin-bottom:1rem;
  display:none;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .connections--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .connections--index-component .menu-buttons{
    flex-direction:row;
  }
  .connections--index-component .menu-buttons{
    align-items:center;
  }
  .connections--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .connections--index-component .menu-buttons{
    border-style:none;
  }
  .connections--index-component .menu-buttons{
    background-color:transparent;
  }
}
@media (min-width: 1152px){
  .connections--index-component .menu-buttons{
    display:flex;
  }
}
.connections--index-component .menu-buttons.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.connections--index-component .menu-buttons.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.connections--index-component .menu-buttons.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.connections--index-component .table-wrapper tbody tr{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.connections--index-component .table-wrapper thead, .connections--index-component .table-wrapper tbody tr{
  display:table;
  width:100%;
  table-layout: fixed; /* even columns width , fix width of table too*/
}
.connections--index-component .table-wrapper thead {
  width: 100%;
}
.connections--index-component .table-wrapper tr:last-child td:first-child .overable, .connections--index-component .table-wrapper tr:last-child td:first-child .not-overable{
  border-radius:0px;
}
.connections--index-component .table-wrapper tr:last-child td:last-child .overable, .connections--index-component .table-wrapper tr:last-child td:last-child .not-overable{
  border-radius:0px;
}
.connections--index-component .table-wrapper tr:last-child td:first-child, .connections--index-component .table-wrapper tr:last-child td:first-child .not-overable {
  border-bottom-left-radius: 0.25rem;
}
.connections--index-component .table-wrapper tr:last-child td:last-child, .connections--index-component .table-wrapper tr:last-child td:last-child .not-overable {
  border-bottom-right-radius: 0.25rem;
}
.connections--index-component .table-wrapper td.network, .connections--index-component .table-wrapper th.network{
  display:none;
}
@media (min-width: 1152px){
  .connections--index-component .table-wrapper td.network, .connections--index-component .table-wrapper th.network{
    display:table-cell;
  }
}
.connections--index-component .table-wrapper .device-name{
  overflow:scroll;
}
.connections--index-component tbody td:first-child,
.connections--index-component tbody th:first-child,
.connections--index-component tbody td:last-child,
.connections--index-component tbody th:last-child,
.connections--index-component thead td:first-child,
.connections--index-component thead th:first-child,
.connections--index-component thead td:last-child,
.connections--index-component thead th:last-child {
  width: 48px;
}
.connections--index-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.connections--index-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.accesses--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1152px){
  .accesses--index-component .mobile-bar{
    display:none;
  }
}
.accesses--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.accesses--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.accesses--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.accesses--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.accesses--index-component .menu-buttons{
  display:none;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .accesses--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .accesses--index-component .menu-buttons{
    flex-direction:row;
  }
  .accesses--index-component .menu-buttons{
    align-items:center;
  }
  .accesses--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .accesses--index-component .menu-buttons{
    border-style:none;
  }
  .accesses--index-component .menu-buttons{
    background-color:transparent;
  }
}
@media (min-width: 1152px){
  .accesses--index-component .menu-buttons{
    display:flex;
  }
}
.accesses--index-component .menu-buttons.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.accesses--index-component .menu-buttons.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.accesses--index-component .menu-buttons.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.accesses--index-component .table-wrapper tr:last-child td:first-child .overable, .accesses--index-component .table-wrapper tr:last-child td:first-child .not-overable{
  border-radius:0px;
}
.accesses--index-component .table-wrapper tr:last-child td:last-child .overable, .accesses--index-component .table-wrapper tr:last-child td:last-child .not-overable{
  border-radius:0px;
}
.accesses--index-component .table-wrapper tr:last-child td:first-child, .accesses--index-component .table-wrapper tr:last-child td:first-child .not-overable {
  border-bottom-left-radius: 0.25rem;
}
.accesses--index-component .table-wrapper tr:last-child td:last-child, .accesses--index-component .table-wrapper tr:last-child td:last-child .not-overable {
  border-bottom-right-radius: 0.25rem;
}
.accesses--index-component .table-wrapper td.email, .accesses--index-component .table-wrapper th.email{
  display:none;
}
@media (min-width: 768px){
  .accesses--index-component .table-wrapper td.email, .accesses--index-component .table-wrapper th.email{
    display:table-cell;
  }
}
.accesses--index-component .table-wrapper td.first-name, .accesses--index-component .table-wrapper th.first-name{
  display:none;
}
@media (min-width: 768px){
  .accesses--index-component .table-wrapper td.first-name, .accesses--index-component .table-wrapper th.first-name{
    display:table-cell;
  }
}
.accesses--index-component .table-wrapper td.last-name, .accesses--index-component .table-wrapper th.last-name{
  display:none;
}
@media (min-width: 768px){
  .accesses--index-component .table-wrapper td.last-name, .accesses--index-component .table-wrapper th.last-name{
    display:table-cell;
  }
}
.accesses--index-component .table-wrapper td.name, .accesses--index-component .table-wrapper th.name{
  display:block;
}
@media (min-width: 768px){
  .accesses--index-component .table-wrapper td.name, .accesses--index-component .table-wrapper th.name{
    display:none;
  }
}
.accesses--index-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.accesses--index-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.layers--index-component .menu-buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}

@media (min-width: 1024px){
  .layers--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .layers--index-component .menu-buttons{
    flex-direction:row;
  }
  .layers--index-component .menu-buttons{
    align-items:center;
  }
  .layers--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .layers--index-component .menu-buttons{
    border-style:none;
  }
  .layers--index-component .menu-buttons{
    background-color:transparent;
  }
}
.layers--index-component .menu-buttons.important-hidden{
  display:none;
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons.important-hidden{
    display:flex;
  }
}
.layers--index-component .menu-buttons .button{
  border-radius:0px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:1rem;
  padding-right:1rem;
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons .button{
    --tw-bg-opacity:1;
    background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  }
}
.layers--index-component .menu-buttons .button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.primary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.edit{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons .button.edit:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.edit .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons .button.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons .button.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons .button:first-child{
    border-top-left-radius:0.25rem;
    border-bottom-left-radius:0.25rem;
  }
}
.layers--index-component .menu-buttons .button.primary, .layers--index-component .menu-buttons .button.cancel, .layers--index-component .menu-buttons .button.edit{
  display:none;
  border-top-right-radius:0.25rem;
  border-bottom-right-radius:0.25rem;
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons .button.primary, .layers--index-component .menu-buttons .button.cancel, .layers--index-component .menu-buttons .button.edit{
    display:block;
  }
}

@media (min-width: 1024px){
  .layers--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .layers--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .layers--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .layers--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .layers--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .layers--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .layers--index-component{
      max-width:1536px;
    }
  }
}
.layers--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .layers--index-component .mobile-bar{
    display:none;
  }
}
.layers--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.layers--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.layers--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.layers--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons{
  display:none;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .layers--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .layers--index-component .menu-buttons{
    flex-direction:row;
  }
  .layers--index-component .menu-buttons{
    align-items:center;
  }
  .layers--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .layers--index-component .menu-buttons{
    border-style:none;
  }
  .layers--index-component .menu-buttons{
    background-color:transparent;
  }
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons{
    display:flex;
  }
}
.layers--index-component .menu-buttons.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .layers--index-component .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.layers--index-component .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.layers--index-component .ui--field .field-name{
  width:12rem;
}
.layers--index-component .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.layers--index-component .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .layers--index-component .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.layers--index-component .actions{
  position:sticky;
  bottom:0px;
  z-index:10;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.layers--index-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .layers--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .layers--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .layers--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .layers--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .layers--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .layers--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .layers--index-component{
      max-width:1536px;
    }
  }
}
.layers--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .layers--index-component .mobile-bar{
    display:none;
  }
}
.layers--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.layers--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.layers--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.layers--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons{
  display:none;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .layers--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .layers--index-component .menu-buttons{
    flex-direction:row;
  }
  .layers--index-component .menu-buttons{
    align-items:center;
  }
  .layers--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .layers--index-component .menu-buttons{
    border-style:none;
  }
  .layers--index-component .menu-buttons{
    background-color:transparent;
  }
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons{
    display:flex;
  }
}
.layers--index-component .menu-buttons.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .layers--index-component .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.layers--index-component .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.layers--index-component .ui--field .field-name{
  width:12rem;
}
.layers--index-component .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.layers--index-component .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .layers--index-component .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}

.layers--index-component .menu-buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}

@media (min-width: 1024px){
  .layers--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .layers--index-component .menu-buttons{
    flex-direction:row;
  }
  .layers--index-component .menu-buttons{
    align-items:center;
  }
  .layers--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .layers--index-component .menu-buttons{
    border-style:none;
  }
  .layers--index-component .menu-buttons{
    background-color:transparent;
  }
}
.layers--index-component .menu-buttons.important-hidden{
  display:none;
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons.important-hidden{
    display:flex;
  }
}
.layers--index-component .menu-buttons .button{
  border-radius:0px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:1rem;
  padding-right:1rem;
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons .button{
    --tw-bg-opacity:1;
    background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  }
}
.layers--index-component .menu-buttons .button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.primary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.edit{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons .button.edit:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.edit .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons .button.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.layers--index-component .menu-buttons .button.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.layers--index-component .menu-buttons .button.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons .button:first-child{
    border-top-left-radius:0.25rem;
    border-bottom-left-radius:0.25rem;
  }
}
.layers--index-component .menu-buttons .button.primary, .layers--index-component .menu-buttons .button.cancel, .layers--index-component .menu-buttons .button.edit{
  display:none;
  border-top-right-radius:0.25rem;
  border-bottom-right-radius:0.25rem;
}
@media (min-width: 1152px){
  .layers--index-component .menu-buttons .button.primary, .layers--index-component .menu-buttons .button.cancel, .layers--index-component .menu-buttons .button.edit{
    display:block;
  }
}

@media (min-width: 1024px){
  .profiles--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .profiles--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .profiles--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .profiles--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .profiles--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .profiles--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .profiles--index-component{
      max-width:1536px;
    }
  }
}
.profiles--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .profiles--index-component .mobile-bar{
    display:none;
  }
}
.profiles--index-component .mobile-bar {
  height: 50px;
}
.profiles--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.profiles--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.profiles--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.profiles--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.profiles--index-component .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .profiles--index-component .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.profiles--index-component .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.profiles--index-component .ui--field .field-name{
  width:12rem;
}
.profiles--index-component .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.profiles--index-component .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .profiles--index-component .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
  .status--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .status--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .status--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .status--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .status--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .status--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .status--index-component{
      max-width:1536px;
    }
  }
}
.status--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .status--index-component .mobile-bar{
    display:none;
  }
}
.status--index-component .mobile-bar {
  height: 50px;
}
.status--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.status--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.status--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.status--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.status--index-component .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .status--index-component .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.status--index-component .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.status--index-component .ui--field .field-name{
  width:12rem;
}
.status--index-component .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.status--index-component .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .status--index-component .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
  .devices--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .devices--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .devices--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .devices--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .devices--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .devices--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .devices--edit{
      max-width:1536px;
    }
  }
}
.devices--edit .field-badge-error{
  margin-right:0.25rem;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(254, 226, 226, var(--tw-bg-opacity));
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.devices--edit .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .devices--edit .mobile-bar{
    display:none;
  }
}
.devices--edit .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.devices--edit .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.devices--edit .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.devices--edit .menu-buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .devices--edit .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .devices--edit .menu-buttons{
    flex-direction:row;
  }
  .devices--edit .menu-buttons{
    align-items:center;
  }
  .devices--edit .menu-buttons{
    justify-content:flex-end;
  }
  .devices--edit .menu-buttons{
    border-style:none;
  }
  .devices--edit .menu-buttons{
    background-color:transparent;
  }
}
.devices--edit .menu-buttons.important-hidden{
  display:none;
}
@media (min-width: 1152px){
  .devices--edit .menu-buttons.important-hidden{
    display:flex;
  }
}
.devices--edit .menu-buttons .button{
  border-radius:0px;
  border-width:0px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:1rem;
  padding-right:1rem;
}
@media (min-width: 1152px){
  .devices--edit .menu-buttons .button{
    border-width:1px;
  }
  .devices--edit .menu-buttons .button{
    border-right-width:0px;
  }
  .devices--edit .menu-buttons .button{
    --tw-bg-opacity:1;
    background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  }
  .devices--edit .menu-buttons .button{
    --tw-bg-opacity:1;
    background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  }
}
.devices--edit .menu-buttons .button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
}
.devices--edit .menu-buttons .button.primary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.devices--edit .menu-buttons .button.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.devices--edit .menu-buttons .button.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.devices--edit .menu-buttons .button.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.devices--edit .menu-buttons .button.enabled{
  --tw-bg-opacity:1;
  background-color:rgba(217, 119, 6, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.devices--edit .menu-buttons .button.enabled:hover{
  --tw-bg-opacity:1;
  background-color:rgba(180, 83, 9, var(--tw-bg-opacity));
}
.devices--edit .menu-buttons .button.enabled .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.devices--edit .menu-buttons .button:first-child{
  border-right-width:0px;
}
@media (min-width: 1152px){
  .devices--edit .menu-buttons .button:first-child{
    border-top-left-radius:0.25rem;
    border-bottom-left-radius:0.25rem;
  }
}
.devices--edit .menu-buttons .button.primary, .devices--edit .menu-buttons .button.cancel{
  display:none;
  border-top-right-radius:0.25rem;
  border-bottom-right-radius:0.25rem;
}
@media (min-width: 1152px){
  .devices--edit .menu-buttons .button.primary, .devices--edit .menu-buttons .button.cancel{
    display:block;
  }
}
.devices--edit .main-configuration-module{
  display:flex;
  flex-wrap:wrap;
}
@media (min-width: 1024px){
  .devices--edit .main-configuration-module{
    flex-wrap:nowrap;
  }
  .devices--edit .main-configuration-module .wide-card-column{
    width:50%;
  }
  .devices--edit .main-configuration-module .wide-card-column:last-child{
    margin-left:4rem;
  }
}
.devices--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.devices--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .devices--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.devices--edit .input input{
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.devices--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.devices--edit a.reload:has(.icon){
  display:none;
}
.devices--edit .actions{
  position:sticky;
  bottom:0px;
  z-index:10;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.devices--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.devices--wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}
.devices--wifi-module .reload .icon{
  width:1rem;
}

.devices--wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}
.devices--wifi-module .reload .icon{
  width:1rem;
}

.events--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1152px){
  .events--index-component .mobile-bar{
    display:none;
  }
}

.events--index-component .mobile-bar {
  height: 50px;
}
.events--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.events--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.events--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.events--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.events--index-component .table-wrapper{
  display:none;
}
@media (min-width: 768px){
  .events--index-component .table-wrapper{
    display:block;
  }
}
.events--index-component .table-wrapper tr:last-child td:first-child .overable, .events--index-component .table-wrapper tr:last-child td:first-child .not-overable{
  border-radius:0px;
}
.events--index-component .table-wrapper tr:last-child td:last-child .overable, .events--index-component .table-wrapper tr:last-child td:last-child .not-overable{
  border-radius:0px;
}
.events--index-component .table-wrapper td.date, .events--index-component .table-wrapper th.date{
  display:none;
}
@media (min-width: 1024px){
  .events--index-component .table-wrapper td.date, .events--index-component .table-wrapper th.date{
    display:table-cell;
  }
}
.events--index-component .table-wrapper tr:last-child td:first-child,
.events--index-component .table-wrapper tr:last-child td:first-child .overable {
  border-bottom-left-radius: 0.25rem;
}
.events--index-component .table-wrapper tr:last-child td:last-child,
.events--index-component .table-wrapper tr:last-child td:last-child .overable {
  border-bottom-right-radius: 0.25rem;
}
@media (min-width: 768px){
  .events--index-component .list-wrapper{
    display:none;
  }
}
.events--index-component .list-wrapper .event-item:first-child{
  margin-top:0px;
}
.events--index-component .list-wrapper .event-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.events--index-component .list-wrapper .event-item .name a .event-name{
  word-break:break-all;
}
.events--index-component .list-wrapper .event-item .name > a, .events--index-component .list-wrapper .date, .events--index-component .list-wrapper .user{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.events--index-component .list-wrapper .event-item .user{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.events--index-component .list-wrapper .event-item .name > a > svg.pending{
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.events--index-component .list-wrapper .event-item .name > a > svg.executed{
  --tw-text-opacity:1;
  color:rgba(5, 150, 105, var(--tw-text-opacity));
}
.events--index-component .list-wrapper .event-item .name > a > svg.in_progress{
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.events--index-component .list-wrapper .event-item .name > a > svg.failed{
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.events--index-component .list-wrapper .event-item .name > a > svg.overridden{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
.events--index-component .pagination{
  padding-left:0.625rem;
  padding-right:0.625rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.events--index-component .pagination:hover{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
@media (min-width: 768px){
  .events--index-component .pagination{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .events--show-component{
    width:100%;
  }
  @media (min-width: 640px){
    .events--show-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .events--show-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .events--show-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .events--show-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .events--show-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .events--show-component{
      max-width:1536px;
    }
  }
}
.events--show-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .events--show-component .mobile-bar{
    display:none;
  }
}
.events--show-component .mobile-bar {
  height: 50px;
}
.events--show-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.events--show-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.events--show-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.events--show-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}

.devices--header{
  margin-top:1.5rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .devices--header{
    margin-left:0px;
    margin-right:0px;
  }
  .devices--header{
    margin-top:0px;
  }
  .devices--header{
    padding-left:1rem;
    padding-right:1rem;
  }
}

@media (min-width: 1280px){
  .devices--header{
    padding-left:0px;
    padding-right:0px;
  }
}
.devices--header.devices--header-new{
  margin-top:0px;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
}
@media (min-width: 1024px){
  .devices--header.devices--header-new{
    border-style:none;
  }
  .devices--header.devices--header-new{
    background-color:transparent;
  }
  .devices--header.devices--header-new{
    padding-left:1rem;
    padding-right:1rem;
  }
  .devices--header.devices--header-new{
    padding-top:0px;
    padding-bottom:0px;
  }
}
@media (min-width: 1280px){
  .devices--header.devices--header-new{
    padding-left:0px;
    padding-right:0px;
  }
}
.devices--header .title{
  display:flex;
  justify-content:space-between;
  background-color:transparent;
  padding-left:0px;
  padding-right:0px;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .devices--header .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .devices--header .title{
    display:block;
  }
  .devices--header .title{
    padding-left:0px;
    padding-right:0px;
  }
  .devices--header .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .devices--header .title{
    line-height:1;
  }
}
.devices--header .device--name {
  width: calc(100% - 2rem);
  margin-left:0.5rem;
  font-size:1.125rem;
  line-height:1.75rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
  overflow-wrap: anywhere;
}

.devices--index .bottom-devices-map.collapsed{
  height:13rem;
}

@media (min-width: 768px){
  .devices--index .bottom-devices-map.collapsed{
    height:24rem;
  }
}
.devices--index .bottom-devices-map {
  height: 100%;
}
.devices--index .table-wrapper{
  display:none;
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}
@media (min-width: 1024px){
  .devices--index .table-wrapper{
    display:block;
  }
}
.devices--index .table-wrapper tbody tr{
  border-bottom-right-radius:0.25rem;
  border-bottom-left-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.devices--index .table-wrapper tr:last-child td:first-child {
  border-bottom-left-radius: 0.25rem;
}
.devices--index .table-wrapper tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}
.devices--index .table-wrapper tr:last-child td:first-child .overable, .devices--index .table-wrapper tr:last-child td:first-child .not-overable{
  border-radius:0px;
}
.devices--index .table-wrapper tr:last-child td:last-child .overable, .devices--index .table-wrapper tr:last-child td:last-child .not-overable{
  border-radius:0px;
}
.devices--index .table-wrapper td.address, .devices--index .table-wrapper th.address{
  display:none;
}
@media (min-width: 1024px){
  .devices--index .table-wrapper td.address, .devices--index .table-wrapper th.address{
    display:table-cell;
  }
}
.devices--index .table-wrapper .pagination a{
  display:block;
  width:100%;
  text-align:right;
}
@media (min-width: 1024px){
  .devices--index .list-wrapper{
    display:none;
  }
}
.devices--index .list-wrapper .device-item:first-child{
  margin-top:0px;
}
.devices--index .list-wrapper .device-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.devices--index .list-wrapper .device-item .status-led-w{
  margin-right:1.25rem;
  align-self:center;
}
.devices--index .list-wrapper .device-item .name > a, .devices--index .list-wrapper .data, .devices--index .list-wrapper .location{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  overflow:auto;
  word-break:break-all;
  padding:1.25rem;
}
.devices--index .list-wrapper .device-item .data{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.devices--index .list-wrapper .pagination{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding:1.25rem;
  text-align:center;
}
.devices--index .overable.position{
  cursor:pointer;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.devices--index .overable.name{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.devices--index .tooltip-map .mini-led{
  margin-left:0px;
  margin-right:0px;
  margin-right:0.25rem;
  height:0.75rem;
  width:0.75rem;
}
.devices--index .tooltip-map .mini-led .online, .devices--index .tooltip-map .mini-led .offline, .devices--index .tooltip-map .mini-led .current, .devices--index .tooltip-map .mini-led .pending{
  position:relative;
  display:inline-flex;
  height:0.75rem;
  width:0.75rem;
  border-radius:9999px;
  border-width:2px;
}
.devices--index .tooltip-map .mini-led .online{
  --tw-border-opacity:1;
  border-color:rgba(167, 243, 208, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(16, 185, 129, var(--tw-bg-opacity));
}
.devices--index .tooltip-map .mini-led .offline{
  --tw-border-opacity:1;
  border-color:rgba(254, 202, 202, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.devices--index .tooltip-map .mini-led .pending{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.devices--index .tooltip-map .mini-led .current{
  --tw-border-opacity:1;
  border-color:rgba(167, 243, 208, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(16, 185, 129, var(--tw-bg-opacity));
}
.devices--index .bottom-half{
  display:none;
}
@media (min-width: 768px){
  .devices--index .bottom-half{
    display:block;
  }
}
.devices--index .bottom-half {
  height: calc(50vh - 74px);
}
@media (min-width: 768px){
  .devices--index .bottom-half.hidden{
    display:none;
  }
}
.devices--index tbody{
  display:block;
  overflow-y:scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  height: calc(50vh - 74px);
}
.devices--index tbody::-webkit-scrollbar {
  display: none;
}
.devices--index tbody tr.selected td .overable, .devices--index tbody tr.selected td .not-overable{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.devices--index tbody td:first-child,
.devices--index tbody th:first-child,
.devices--index thead td:first-child,
.devices--index thead th:first-child {
  width: 112px;
}
.devices--index thead, .devices--index tbody tr{
  display:table;
  width:100%;
  table-layout: fixed; /* even columns width , fix width of table too*/
}
.devices--index thead {
  width: 100%;
}
.devices--index.collapsed{
  margin-bottom:2rem;
}
.devices--index.collapsed .table-wrapper{
  border-radius:0.25rem;
}
.devices--index.collapsed tbody{
  height:100%;
  overflow:auto;
}
.devices--index.collapsed tbody tr:last-child td:first-child .overable, .devices--index.collapsed tbody tr:last-child td:first-child .not-overable{
  border-bottom-left-radius:0.25rem;
}
.devices--index.collapsed tbody tr:last-child td:last-child .overable, .devices--index.collapsed tbody tr:last-child td:last-child .not-overable{
  border-bottom-right-radius:0.25rem;
}

.sort-menu{
  position:fixed;
  top:0px;
  left:0px;
  height:100%;
  width:100%;
  --tw-bg-opacity:1;
  background-color:rgba(17, 24, 39, var(--tw-bg-opacity));
  --tw-bg-opacity:0.8;
}
.sort-menu .body{
  margin-top:4rem;
  margin-bottom:4rem;
  margin-left:0.5rem;
  margin-right:0.5rem;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:1.5rem;
  padding-bottom:1.5rem;
  padding-left:1.5rem;
  padding-right:1.5rem;
}
.sort-menu .body .title{
  display:flex;
  justify-content:space-between;
}
.sort-menu .body .title > div:first-letter{
  text-transform:capitalize;
}
.sort-menu .body .title > div:first-child{
  font-weight:500;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.sort-menu .body .items{
  margin-top:2.75rem;
  margin-bottom:1.75rem;
}
.sort-menu .body .items > div{
  padding-top:0.625rem;
  padding-bottom:0.625rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.sort-menu .body .items > div.active{
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}

@media (min-width: 1024px){
  .devices--new{
    width:100%;
  }
  @media (min-width: 640px){
    .devices--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .devices--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .devices--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .devices--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .devices--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .devices--new{
      max-width:1536px;
    }
  }
}
.devices--new .main-configuration-module{
  display:flex;
}
.devices--new .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.devices--new .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .devices--new .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.devices--new .input input{
  width:24rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.devices--new .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.devices--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.devices--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .devices--show{
    width:100%;
  }
  @media (min-width: 640px){
    .devices--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .devices--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .devices--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .devices--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .devices--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .devices--show{
      max-width:1536px;
    }
  }
}
.devices--show a.disabled{
  cursor:not-allowed;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.devices--show a.disabled i{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.devices--show .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .devices--show .mobile-bar{
    display:none;
  }
}
.devices--show .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.devices--show .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.devices--show .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.devices--show .menu-buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .devices--show .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .devices--show .menu-buttons{
    flex-direction:row;
  }
  .devices--show .menu-buttons{
    align-items:center;
  }
  .devices--show .menu-buttons{
    justify-content:flex-end;
  }
  .devices--show .menu-buttons{
    border-style:none;
  }
  .devices--show .menu-buttons{
    background-color:transparent;
  }
}
.devices--show .menu-buttons.important-hidden{
  display:none;
}
@media (min-width: 1152px){
  .devices--show .menu-buttons.important-hidden{
    display:flex;
  }
}
.devices--show .menu-buttons .button{
  border-radius:0px;
  border-width:0px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:1rem;
  padding-right:1rem;
}
@media (min-width: 1152px){
  .devices--show .menu-buttons .button{
    border-width:1px;
  }
  .devices--show .menu-buttons .button{
    border-right-width:0px;
  }
  .devices--show .menu-buttons .button{
    --tw-bg-opacity:1;
    background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  }
}
.devices--show .menu-buttons .button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
}
.devices--show .menu-buttons .button.primary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}
.devices--show .menu-buttons .button.enabled{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.devices--show .menu-buttons .button.enabled:hover{
  --tw-bg-opacity:1;
  background-color:rgba(217, 119, 6, var(--tw-bg-opacity));
}
.devices--show .menu-buttons .button.enabled .icon{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.devices--show .menu-buttons .button:first-child{
  border-right-width:0px;
}
@media (min-width: 1152px){
  .devices--show .menu-buttons .button:first-child{
    border-top-left-radius:0.25rem;
    border-bottom-left-radius:0.25rem;
  }
}
.devices--show .menu-buttons .button.primary{
  display:none;
  border-top-right-radius:0.25rem;
  border-bottom-right-radius:0.25rem;
}
@media (min-width: 1152px){
  .devices--show .menu-buttons .button.primary{
    display:block;
  }
}
.devices--show .menu-buttons .button.disabled:last-child:not(.no-last-child){
  display:none;
  border-top-right-radius:0.25rem;
  border-bottom-right-radius:0.25rem;
  border-right-width:1px;
}
@media (min-width: 1152px){
  .devices--show .menu-buttons .button.disabled:last-child:not(.no-last-child){
    display:block;
  }
}
.devices--show .main-configuration-module{
  display:flex;
  flex-wrap:wrap;
}
@media (min-width: 1024px){
  .devices--show .main-configuration-module{
    flex-wrap:nowrap;
  }
}
.devices--show .main-configuration-module span:has(> span.gmap){
  text-overflow:ellipsis;
}
.devices--show .main-configuration-module .wide-card-column{
  width:100%;
}
@media (min-width: 1024px){
  .devices--show .main-configuration-module .wide-card-column{
    width:50%;
  }
}
@media (min-width: 1280px){
  .devices--show .main-configuration-module .wide-card-column:last-child{
    margin-left:4rem;
  }
}
.devices--show .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.devices--show .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .devices--show .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 1280px) {
  .devices--show .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.devices--show a.reload:has(.icon){
  display:inline-block;
}

.devices--wan-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--wan-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.devices--webserver-module .ws-login-button{
  display:inline-flex;
  align-items:center;
  column-gap:0.375rem;
  border-radius:0.25rem;
  padding-left:0.875rem;
  padding-right:0.875rem;
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  font-size:0.875rem;
  line-height:1.25rem;
  font-weight:500;
}
.devices--webserver-module .ws-login-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(29, 78, 216, var(--tw-text-opacity));
}
.devices--webserver-module .ws-login-button.primary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}
.devices--webserver-module .ws-login-button.secondary{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.devices--webserver-module .ws-login-button.secondary:hover{
  --tw-bg-opacity:1;
  background-color:rgba(217, 119, 6, var(--tw-bg-opacity));
}

.devices--wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.devices--wan-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--wan-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.devices--wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.devices--submenu{
  display:flex;
}

@media (min-width: 1152px){
  .devices--submenu{
    margin-top:1.5rem;
    margin-bottom:1.5rem;
  }
  .devices--submenu{
    margin-left:0px;
    margin-right:0px;
  }
  .devices--submenu{
    margin-top:2rem;
  }
  .devices--submenu{
    border-bottom-width:1px;
  }
}
.devices--submenu .submenu-item{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .devices--submenu .submenu-item{
    margin-right:2rem;
  }
  .devices--submenu .submenu-item{
    display:block;
  }
  .devices--submenu .submenu-item{
    padding-bottom:0.5rem;
  }
}
@media (min-width: 768px){
  .devices--submenu .submenu-item.backbutton{
    display:none;
  }
}
.devices--submenu .submenu-item a{
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1rem;
  padding-bottom:1rem;
}
.devices--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .devices--submenu .submenu-item a{
    padding-left:0px;
    padding-right:0px;
  }
  .devices--submenu .submenu-item a{
    padding-top:0px;
    padding-bottom:0px;
  }
}
.devices--submenu .submenu-item a .fa-hard-drive {
  rotate: 90deg;
}
.devices--submenu .submenu-item.active{
  margin-bottom:-1px;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .devices--submenu .submenu-item.active{
    display:block;
  }
  .devices--submenu .submenu-item.active{
    border-bottom-width:2px;
  }
  .devices--submenu .submenu-item.active{
    --tw-border-opacity:1;
    border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  }
}

.events--device-access-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-access-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-access-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-access-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-access-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-access-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-access-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-access-update .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-admin-password-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-admin-password-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-admin-password-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-admin-password-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-admin-password-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-admin-password-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-admin-password-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-admin-password-update .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-apply-configuration .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-apply-configuration .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-apply-configuration .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-apply-configuration .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-apply-configuration .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-apply-configuration .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-apply-configuration .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-apply-configuration .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-connection-state-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-connection-state-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-connection-state-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-connection-state-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-connection-state-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-connection-state-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-connection-state-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-connection-state-update .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-connection-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-connection-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-connection-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-connection-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-connection-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-connection-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-connection-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-connection-update .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-firewall-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-firewall-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-firewall-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-firewall-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-firewall-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-firewall-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-firewall-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-firewall-update .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-layer2-disabled .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-layer2-disabled .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-layer2-disabled .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-layer2-disabled .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-layer2-disabled .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-layer2-disabled .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-layer2-disabled .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-layer2-disabled .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-layer2-enabled .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-layer2-enabled .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-layer2-enabled .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-layer2-enabled .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-layer2-enabled .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-layer2-enabled .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-layer2-enabled .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-layer2-enabled .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-name-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-name-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-name-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-name-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-name-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-name-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-name-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-name-update .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-restart .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-restart .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-restart .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-restart .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-restart .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-restart .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-restart .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-restart .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-sync-configuration .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-sync-configuration .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-sync-configuration .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-sync-configuration .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-sync-configuration .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-sync-configuration .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-sync-configuration .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-sync-configuration .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--device-upgrade-profile .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--device-upgrade-profile .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--device-upgrade-profile .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--device-upgrade-profile .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--device-upgrade-profile .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--device-upgrade-profile .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--device-upgrade-profile .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--device-upgrade-profile .actions a.cancel{
  margin-left:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.events--device-upgrade-profile .progressbar{
  width:66.666667%;
  border-radius:9999px;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
@media (prefers-color-scheme: dark){
  .events--device-upgrade-profile .progressbar{
    --tw-bg-opacity:1;
    background-color:rgba(55, 65, 81, var(--tw-bg-opacity));
  }
}
.events--device-upgrade-profile .progressbar .content{
  border-radius:9999px;
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  padding:0.125rem;
  text-align:center;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:500;
  line-height:1;
  --tw-text-opacity:1;
  color:rgba(219, 234, 254, var(--tw-text-opacity));
}

.events--realm-add-device .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-add-device .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-add-device .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-add-device .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-add-device .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-add-device .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-add-device .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-add-device .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--realm-add-operator .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-add-operator .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-add-operator .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-add-operator .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-add-operator .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-add-operator .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-add-operator .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-add-operator .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--realm-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-update .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--realm-remove-device .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-remove-device .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-remove-device .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-remove-device .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-remove-device .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-remove-device .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-remove-device .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-remove-device .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--realm-remove-operator .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-remove-operator .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-remove-operator .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-remove-operator .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-remove-operator .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-remove-operator .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-remove-operator .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-remove-operator .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--realm-update .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-update .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-update .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-update .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-update .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.events--realm-update-operator .ui--card .state{
  position:relative;
  top:0px;
  right:0px;
  float:right;
  border-bottom-left-radius:0.25rem;
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.events--realm-update-operator .ui--card .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.events--realm-update-operator .ui--card .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(5, 150, 105, var(--tw-bg-opacity));
}
.events--realm-update-operator .ui--card .state.in_progress{
  --tw-bg-opacity:1;
  background-color:rgba(124, 58, 237, var(--tw-bg-opacity));
}
.events--realm-update-operator .ui--card .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.events--realm-update-operator .ui--card .state.overridden{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}
.events--realm-update-operator .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.events--realm-update-operator .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.files--index .overable, .files--index .not-overable{
  height:3rem;
}

@media (min-width: 1024px){
  .internal--concentrators--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--concentrators--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--concentrators--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--concentrators--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--concentrators--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--concentrators--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--concentrators--edit{
      max-width:1536px;
    }
  }
}
.internal--concentrators--edit .main-configuration-module{
  display:flex;
}
.internal--concentrators--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--concentrators--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--concentrators--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--concentrators--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--concentrators--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--concentrators--edit .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--concentrators--edit .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--concentrators--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--concentrators--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--concentrators--edit .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--concentrators--edit .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.event-status.pending, .internal--events--index-component .table-wrapper .pending.state{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.event-status.executed, .internal--events--index-component .table-wrapper .executed.state{
  --tw-bg-opacity:1;
  background-color:rgba(236, 253, 245, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(5, 150, 105, var(--tw-text-opacity));
}
.event-status.in_progress, .internal--events--index-component .table-wrapper .in_progress.state{
  --tw-bg-opacity:1;
  background-color:rgba(245, 243, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.event-status.incompleted, .internal--events--index-component .table-wrapper .incompleted.state{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.event-status.failed, .internal--events--index-component .table-wrapper .failed.state{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.event-status.overridden, .internal--events--index-component .table-wrapper .overridden.state{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}

.internal--events--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--events--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--events--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--events--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--events--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--events--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--events--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--events--index-component{
      max-width:1536px;
    }
  }
}
.internal--events--index-component .table-wrapper{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--events--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--events--index-component .table-wrapper .table-head th{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--events--index-component .table-wrapper tbody tr td{
  padding:0px;
}
.internal--events--index-component .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
}
.internal--events--index-component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--events--index-component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--events--index-component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--events--index-component .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--events--index-component .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}
@media (min-width: 1024px){
  .internal--events--show-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--events--show-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--events--show-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--events--show-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--events--show-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--events--show-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--events--show-component{
      max-width:1536px;
    }
  }
}
.internal--events--show-component .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
@media (min-width: 768px){
  .internal--events--show-component .actions{
    width:83.333333%;
  }
}
.internal--events--show-component .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--events--show-component .event{
  position:relative;
  margin-top:1rem;
  margin-bottom:1rem;
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding:1.5rem;
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px){
  .internal--events--show-component .event{
    width:66.666667%;
  }
}
.internal--events--show-component .event .action{
  font-weight:700;
  text-decoration:underline;
}
.internal--events--show-component .event.pending{
  --tw-border-opacity:1;
  border-color:rgba(245, 158, 11, var(--tw-border-opacity));
}
.internal--events--show-component .event.executed{
  --tw-border-opacity:1;
  border-color:rgba(16, 185, 129, var(--tw-border-opacity));
}
.internal--events--show-component .event.failed{
  --tw-border-opacity:1;
  border-color:rgba(239, 68, 68, var(--tw-border-opacity));
}
.internal--events--show-component .event .state{
  position:absolute;
  top:0px;
  right:0px;
  justify-content:center;
  padding:0.75rem;
  line-height:1;
}
.internal--events--show-component .event .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.internal--events--show-component .event .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(16, 185, 129, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.internal--events--show-component .event .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}

.internal--concentrators--header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--concentrators--header .title{
  border-radius:0.25rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-right:0.5rem;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
}
.internal--concentrators--header .title .subtitle{
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding:0.5rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}

.internal--concentrators--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--concentrators--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--concentrators--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--concentrators--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--concentrators--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--concentrators--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--concentrators--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--concentrators--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--concentrators--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--concentrators--index{
      max-width:1536px;
    }
  }
}
.internal--concentrators--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--concentrators--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--concentrators--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--concentrators--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--concentrators--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--concentrators--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--concentrators--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--concentrators--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--concentrators--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--concentrators--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--concentrators--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--concentrators--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--concentrators--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--concentrators--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--concentrators--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--concentrators--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--concentrators--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--concentrators--index .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--concentrators--index .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--concentrators--index .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--concentrators--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--concentrators--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--concentrators--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--concentrators--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--concentrators--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .internal--concentrators--new{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--concentrators--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--concentrators--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--concentrators--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--concentrators--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--concentrators--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--concentrators--new{
      max-width:1536px;
    }
  }
}
.internal--concentrators--new .main-configuration-module{
  display:flex;
}
.internal--concentrators--new .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--concentrators--new .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--concentrators--new .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--concentrators--new .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--concentrators--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--concentrators--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--concentrators--new .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--concentrators--new .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--concentrators--show{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--concentrators--show{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--concentrators--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--concentrators--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--concentrators--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--concentrators--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--concentrators--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--concentrators--show{
      max-width:1536px;
    }
  }
}
.internal--concentrators--show .header{
  display:flex;
  align-items:baseline;
  justify-content:flex-start;
}
.internal--concentrators--show .header .title{
  border-radius:0.125rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:1rem;
  padding-right:1rem;
  padding-right:0.5rem;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
}

.internal--concentrators--submenu{
  margin-bottom:1.5rem;
  margin-top:2rem;
  display:flex;
  border-bottom-width:1px;
}
.internal--concentrators--submenu .submenu-item{
  margin-right:2rem;
  cursor:pointer;
  padding-bottom:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--concentrators--submenu .submenu-item.active{
  margin-bottom:-1px;
  border-bottom-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--concentrators--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

.internal--device-lots--devices-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--device-lots--devices-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--device-lots--devices-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--device-lots--devices-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--device-lots--devices-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--device-lots--devices-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--device-lots--devices-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--device-lots--devices-component{
      max-width:1536px;
    }
  }
}
.internal--device-lots--devices-component .table-wrapper{
  margin-bottom:2rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--device-lots--devices-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--device-lots--devices-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--device-lots--devices-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--device-lots--devices-component .table-wrapper th.name,
.internal--device-lots--devices-component .table-wrapper td.name {
  width: 36%;
}
.internal--device-lots--devices-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--device-lots--devices-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--device-lots--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--device-lots--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--device-lots--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--device-lots--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--device-lots--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--device-lots--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--device-lots--edit{
      max-width:1536px;
    }
  }
}
.internal--device-lots--edit .main-configuration-module{
  display:flex;
}
.internal--device-lots--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--device-lots--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--device-lots--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--device-lots--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--device-lots--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--device-lots--edit .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--device-lots--edit .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--device-lots--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--device-lots--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--device-lots--edit .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--device-lots--edit .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--device-lots--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--device-lots--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--device-lots--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--device-lots--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--device-lots--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--device-lots--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--device-lots--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--device-lots--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--device-lots--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--device-lots--index{
      max-width:1536px;
    }
  }
}
.internal--device-lots--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--device-lots--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--device-lots--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--device-lots--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--device-lots--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--device-lots--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--device-lots--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--device-lots--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--device-lots--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--device-lots--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--device-lots--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--device-lots--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--device-lots--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--device-lots--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--device-lots--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--device-lots--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--device-lots--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--device-lots--index .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--device-lots--index .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--device-lots--index .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--device-lots--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--device-lots--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--device-lots--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--device-lots--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--device-lots--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .internal--device-lots--new{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--device-lots--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--device-lots--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--device-lots--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--device-lots--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--device-lots--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--device-lots--new{
      max-width:1536px;
    }
  }
}
.internal--device-lots--new .main-configuration-module{
  display:flex;
}
.internal--device-lots--new .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--device-lots--new .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--device-lots--new .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--device-lots--new .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--device-lots--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--device-lots--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--device-lots--new .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--device-lots--new .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--device-lots--show{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--device-lots--show{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--device-lots--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--device-lots--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--device-lots--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--device-lots--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--device-lots--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--device-lots--show{
      max-width:1536px;
    }
  }
}

.internal--device-lots--submenu{
  margin-bottom:1.5rem;
  margin-top:2rem;
  display:flex;
  border-bottom-width:1px;
}
.internal--device-lots--submenu .submenu-item{
  margin-right:2rem;
  cursor:pointer;
  padding-bottom:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--device-lots--submenu .submenu-item.active{
  margin-bottom:-1px;
  border-bottom-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--device-lots--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

.internal--accesses--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--accesses--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--accesses--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--accesses--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--accesses--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--accesses--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--accesses--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--accesses--index-component{
      max-width:1536px;
    }
  }
}
.internal--accesses--index-component .table-wrapper{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--accesses--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--accesses--index-component .table-wrapper .table-head th{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--accesses--index-component .table-wrapper tbody tr td{
  padding:0px;
}
.internal--accesses--index-component .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
}
.internal--accesses--index-component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--accesses--index-component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--accesses--index-component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--accesses--index-component .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--accesses--index-component .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

.internal--connections--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--connections--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--connections--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--connections--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--connections--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--connections--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--connections--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--connections--index-component{
      max-width:1536px;
    }
  }
}
.internal--connections--index-component .table-wrapper{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--connections--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--connections--index-component .table-wrapper .table-head th{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--connections--index-component .table-wrapper tbody tr td{
  padding:0px;
}
.internal--connections--index-component .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
}
.internal--connections--index-component .table-wrapper tbody tr td .status-led-w{
  padding-top:1rem;
  padding-bottom:1rem;
}
.internal--connections--index-component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--connections--index-component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--connections--index-component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--connections--index-component .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--connections--index-component .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .internal--devices--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--devices--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--devices--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--devices--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--devices--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--devices--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--devices--edit{
      max-width:1536px;
    }
  }
}
.internal--devices--edit .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .internal--devices--edit .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.internal--devices--edit .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.internal--devices--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--devices--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--devices--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--devices--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--devices--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--devices--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--devices--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.internal--device--wan-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.internal--device--wan-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.internal--device--wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.internal--device--wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.internal--device--wan-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.internal--device--wan-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.internal--device--wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.internal--device--wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.event-status.pending, .internal--events--index-component .table-wrapper .pending.state{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.event-status.executed, .internal--events--index-component .table-wrapper .executed.state{
  --tw-bg-opacity:1;
  background-color:rgba(236, 253, 245, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(5, 150, 105, var(--tw-text-opacity));
}
.event-status.in_progress, .internal--events--index-component .table-wrapper .in_progress.state{
  --tw-bg-opacity:1;
  background-color:rgba(245, 243, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.event-status.incompleted, .internal--events--index-component .table-wrapper .incompleted.state{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.event-status.failed, .internal--events--index-component .table-wrapper .failed.state{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.event-status.overridden, .internal--events--index-component .table-wrapper .overridden.state{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
.event-status.cancelled, .internal--events--index-component .table-wrapper .cancelled.state{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}

.internal--events--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--events--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--events--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--events--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--events--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--events--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--events--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--events--index-component{
      max-width:1536px;
    }
  }
}
.internal--events--index-component .table-wrapper{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--events--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--events--index-component .table-wrapper .table-head th{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--events--index-component .table-wrapper tbody tr td{
  padding:0px;
}
.internal--events--index-component .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
}
.internal--events--index-component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--events--index-component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--events--index-component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--events--index-component .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--events--index-component .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}
.internal--events--index-component .table-wrapper tr.deleted td .overable{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
  text-decoration:line-through;
  opacity:0.9;
}
@media (min-width: 1024px){
  .internal--events--show-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--events--show-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--events--show-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--events--show-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--events--show-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--events--show-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--events--show-component{
      max-width:1536px;
    }
  }
}
.internal--events--show-component .actions{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
@media (min-width: 768px){
  .internal--events--show-component .actions{
    width:83.333333%;
  }
}
.internal--events--show-component .actions a.cancel{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--events--show-component .event{
  position:relative;
  margin-top:1rem;
  margin-bottom:1rem;
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding:1.5rem;
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px){
  .internal--events--show-component .event{
    width:66.666667%;
  }
}
.internal--events--show-component .event .action{
  font-weight:700;
  text-decoration:underline;
}
.internal--events--show-component .event.pending{
  --tw-border-opacity:1;
  border-color:rgba(245, 158, 11, var(--tw-border-opacity));
}
.internal--events--show-component .event.executed{
  --tw-border-opacity:1;
  border-color:rgba(16, 185, 129, var(--tw-border-opacity));
}
.internal--events--show-component .event.failed{
  --tw-border-opacity:1;
  border-color:rgba(239, 68, 68, var(--tw-border-opacity));
}
.internal--events--show-component .event .state{
  position:absolute;
  top:0px;
  right:0px;
  justify-content:center;
  padding:0.75rem;
  line-height:1;
}
.internal--events--show-component .event .state.pending{
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.internal--events--show-component .event .state.executed{
  --tw-bg-opacity:1;
  background-color:rgba(16, 185, 129, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.internal--events--show-component .event .state.failed{
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}

.internal--devices--header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--devices--header .title{
  border-radius:0.25rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-right:0.5rem;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
}
.internal--devices--header .title .subtitle{
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding:0.5rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--devices--imprinter--component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--devices--imprinter--component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--devices--imprinter--component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--devices--imprinter--component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--devices--imprinter--component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--devices--imprinter--component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--devices--imprinter--component{
      max-width:1536px;
    }
  }
}

.internal--devices--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--devices--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--devices--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--devices--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--devices--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--devices--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--devices--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--devices--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--devices--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--devices--index{
      max-width:1536px;
    }
  }
}
.internal--devices--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--devices--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--devices--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--devices--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--devices--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--devices--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--devices--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--devices--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--devices--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--devices--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--devices--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--devices--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--devices--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--devices--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--devices--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--devices--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--devices--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--devices--index .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--devices--index .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--devices--index .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--devices--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--devices--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--devices--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--devices--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--devices--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .internal--devices--profile{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--devices--profile{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--devices--profile{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--devices--profile{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--devices--profile{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--devices--profile{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--devices--profile{
      max-width:1536px;
    }
  }
}
.internal--devices--profile .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .internal--devices--profile .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.internal--devices--profile .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.internal--devices--profile .ui--field .field-name{
  width:12rem;
}
.internal--devices--profile .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--devices--profile .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--devices--profile .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}

.ui--field{
  margin-bottom:1.25rem;
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:flex-start;
}
.ui--field .attribute-name{
  width:12rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.ui--field .attribute-name .field-icon{
  margin-right:1rem;
  display:inline-block;
  width:1rem;
  text-align:center;
  min-width: 1rem;
}
.ui--field .attribute-name .field-icon .svg-inline--fa, .ui--field .attribute-name .field-icon .svg-inline--fa-solid, .ui--field .attribute-name .field-icon .svg-inline--fas, .ui--field .attribute-name .field-icon .svg-inline--far{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--field .field-value{
  margin-left:2.25rem;
}
.ui--field .field-value:has(.ui--ip-address), .ui--field .field-value:has(.ui--ip-address-port), .ui--field .field-value:has(.ui--prefixed-ip-address), .ui--field .field-value:has(.ui--text-area), .ui--field .field-value:has(.ui--text-area-tags), .ui--field .field-value:has(.ui--secret){
  width:16rem;
}
.ui--field .field-value span.downcase{
  text-transform:lowercase;
}
.ui--field .field-value span.upcase{
  text-transform:uppercase;
}

.internal-devices-profile-progress .ui--field{
  display:flex;
  align-items:center;
}
.internal-devices-profile-progress .ui--field .field-icon{
  margin-right:1rem;
  width:1rem;
  flex:0 1 auto;
  align-self:center;
  text-align:center;
}
.internal-devices-profile-progress .ui--field .field-icon .svg-inline--fa, .internal-devices-profile-progress .ui--field .field-icon .svg-inline--fa-solid, .internal-devices-profile-progress .ui--field .field-icon .svg-inline--fas, .internal-devices-profile-progress .ui--field .field-icon .svg-inline--far{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.internal-devices-profile-progress .ui--field .field-name{
  width:15rem;
  flex:0 1 auto;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal-devices-profile-progress .ui--field .field-value{
  margin-left:1rem;
  flex:1 1 auto;
  align-self:flex-start;
}
.internal-devices-profile-progress .ui--field .field-value span.downcase{
  text-transform:lowercase;
}
.internal-devices-profile-progress .ui--field .field-value span.upcase{
  text-transform:uppercase;
}
.internal-devices-profile-progress .progressbar{
  width:66.666667%;
  border-radius:9999px;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
@media (prefers-color-scheme: dark){
  .internal-devices-profile-progress .progressbar{
    --tw-bg-opacity:1;
    background-color:rgba(55, 65, 81, var(--tw-bg-opacity));
  }
}
.internal-devices-profile-progress .progressbar .content{
  border-radius:9999px;
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  padding:0.125rem;
  text-align:center;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:500;
  line-height:1;
  --tw-text-opacity:1;
  color:rgba(219, 234, 254, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--devices--show{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--devices--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--devices--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--devices--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--devices--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--devices--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--devices--show{
      max-width:1536px;
    }
  }
}
.internal--devices--show a.synchronize{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.internal--devices--show a.synchronize:hover{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
.internal--devices--show a.disabled{
  cursor:not-allowed;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.internal--devices--show a.disabled i{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.internal--devices--show .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .internal--devices--show .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.internal--devices--show .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.internal--devices--show .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--devices--show .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--devices--show .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}

.device-private-notes .inline-action{
  display:none;
}
.device-private-notes.inline-edit .inline-action {
  display: initial;
}

.devices--internal--wan-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--internal--wan-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.internal--devices--show-wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.internal--devices--show-wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.devices--internal--wan-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.devices--internal--wan-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

.internal--devices--show-wifi-module .reload{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(219, 234, 254, var(--tw-bg-opacity));
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  padding-left:0.25rem;
  padding-right:0.25rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}

.internal--devices--show-wifi-module .reload:hover{
  --tw-bg-opacity:1;
  background-color:rgba(191, 219, 254, var(--tw-bg-opacity));
}

@media (min-width: 1024px){
  .internal--device-status{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--device-status{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--device-status{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--device-status{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--device-status{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--device-status{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--device-status{
      max-width:1536px;
    }
  }
}
.internal--device-status .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .internal--device-status .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.internal--device-status .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.internal--device-status .ui--field .field-name{
  width:12rem;
}
.internal--device-status .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--device-status .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--device-status .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}

.internal--devices--submenu{
  margin-bottom:1.5rem;
  margin-top:2rem;
  display:flex;
  border-bottom-width:1px;
}
.internal--devices--submenu .submenu-item{
  margin-right:2rem;
  padding-bottom:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--devices--submenu .submenu-item.active{
  margin-bottom:-1px;
  border-bottom-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--devices--submenu .submenu-item a{
  cursor:pointer;
}
.internal--devices--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--tunnels--edit-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--tunnels--edit-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--tunnels--edit-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--tunnels--edit-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--tunnels--edit-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--tunnels--edit-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--tunnels--edit-component{
      max-width:1536px;
    }
  }
}
.internal--tunnels--edit-component .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .internal--tunnels--edit-component .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.internal--tunnels--edit-component .main-configuration-module .wide-card-column:last-child{
  margin-left:4rem;
}
.internal--tunnels--edit-component .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--tunnels--edit-component .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--tunnels--edit-component .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--tunnels--edit-component .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--tunnels--edit-component .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--tunnels--edit-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--tunnels--edit-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.internal--tunnels--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--tunnels--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--tunnels--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--tunnels--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--tunnels--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--tunnels--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--tunnels--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--tunnels--index-component{
      max-width:1536px;
    }
  }
}
.internal--tunnels--index-component .table-wrapper{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--tunnels--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--tunnels--index-component .table-wrapper .table-head th{
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--tunnels--index-component .table-wrapper tbody tr td{
  padding:0px;
}
.internal--tunnels--index-component .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  padding-left:1rem;
  padding-right:1rem;
}
.internal--tunnels--index-component .table-wrapper tbody tr td .status-led-w{
  padding-top:1rem;
  padding-bottom:1rem;
}
.internal--tunnels--index-component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--tunnels--index-component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--tunnels--index-component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--tunnels--index-component .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--tunnels--index-component .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

.internal--events--device-upgrade-profile .ui--field .field-name{
  width:12rem;
}
.internal--events--device-upgrade-profile .ui--field .field-value{
  margin-left:1rem;
}

.internal--events--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--events--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--events--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--events--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--events--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--events--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--events--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--events--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--events--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--events--index{
      max-width:1536px;
    }
  }
}
.internal--events--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--events--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--events--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--events--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--events--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--events--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--events--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--events--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--events--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--events--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--events--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--events--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--events--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--events--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--events--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--events--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--events--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--events--index .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--events--index .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--events--index .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--events--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--events--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--events--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--events--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--events--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

.internal--events--show{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--events--show{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--events--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--events--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--events--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--events--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--events--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--events--show{
      max-width:1536px;
    }
  }
}
.internal--events--show pre {
  white-space: pre-wrap;
}
.internal--events--show .state{
  border-radius:0.25rem;
  border-width:1px;
  padding:0.25rem;
}

.internal--invitations--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--invitations--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--invitations--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--invitations--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--invitations--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--invitations--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--invitations--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--invitations--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--invitations--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--invitations--index{
      max-width:1536px;
    }
  }
}
.internal--invitations--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--invitations--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--invitations--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--invitations--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--invitations--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--invitations--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--invitations--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--invitations--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--invitations--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--invitations--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--invitations--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--invitations--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--invitations--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--invitations--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--invitations--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--invitations--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--invitations--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--invitations--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--invitations--index .table-wrapper tbody tr.pending{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(254, 243, 199, var(--tw-border-opacity));
}
.internal--invitations--index .table-wrapper tbody tr.pending td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(217, 119, 6, var(--tw-text-opacity));
}
.internal--invitations--index .table-wrapper tbody tr.rejected{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(254, 226, 226, var(--tw-border-opacity));
}
.internal--invitations--index .table-wrapper tbody tr.rejected td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.internal--invitations--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--invitations--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--invitations--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--invitations--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

.internal-user-menu .user-menu-item .head-item{
  position:relative;
  display:flex;
  width:100%;
  justify-content:flex-start;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
  padding-top:0.625rem;
  padding-bottom:0.625rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-weight:600;
}

.internal-user-menu .user-menu-item .head-item:hover{
  --tw-bg-opacity:1;
  background-color:rgba(31, 41, 55, var(--tw-bg-opacity));
}
.internal-user-menu .user-menu-item.menu-open .head-item{
  border-bottom-right-radius:0px;
  border-bottom-left-radius:0px;
}
.internal-user-menu .user-menu-item .icon{
  align-self:center;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal-user-menu .user-menu-item .label{
  margin-left:0.75rem;
  margin-right:0.75rem;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.internal-user-menu .submenu{
  position:absolute;
  display:none;
  width:12rem;
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.internal-user-menu .submenu li{
  text-align:left;
}
.internal-user-menu .submenu li a > div{
  border-radius:0px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  padding-left:0.75rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal-user-menu .submenu li a > div:hover{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
}
.internal-user-menu .submenu li:last-child a div{
  border-top-width:1px;
  border-style:solid;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal-user-menu.menu-open .user-menu-item .head-item{
  border-radius:0.25rem;
  border-bottom-right-radius:0px;
  border-bottom-left-radius:0px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.internal-user-menu.menu-open .user-menu-item .head-item .label{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal-user-menu.menu-open .submenu{
  display:block;
}

.internal--mobiles--header--component{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--mobiles--header--component .title{
  border-radius:0.25rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-right:0.5rem;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
}
.internal--mobiles--header--component .title .subtitle{
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding:0.5rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}

.internal--mobiles--index--component{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--mobiles--index--component{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--mobiles--index--component{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--mobiles--index--component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--mobiles--index--component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--mobiles--index--component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--mobiles--index--component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--mobiles--index--component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--mobiles--index--component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--mobiles--index--component{
      max-width:1536px;
    }
  }
}
.internal--mobiles--index--component .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--mobiles--index--component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--mobiles--index--component .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--mobiles--index--component .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--mobiles--index--component .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--mobiles--index--component .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--mobiles--index--component .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--mobiles--index--component .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--mobiles--index--component .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--mobiles--index--component .table-wrapper tbody tr td{
  padding:0px;
}
.internal--mobiles--index--component .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--mobiles--index--component .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--mobiles--index--component .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--mobiles--index--component .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--mobiles--index--component .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--mobiles--index--component .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--mobiles--index--component .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--mobiles--index--component .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--mobiles--index--component .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--mobiles--index--component .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--mobiles--index--component .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--mobiles--index--component .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--mobiles--index--component .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--mobiles--index--component .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--mobiles--index--component .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .internal--mobiles--show--component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--mobiles--show--component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--mobiles--show--component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--mobiles--show--component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--mobiles--show--component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--mobiles--show--component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--mobiles--show--component{
      max-width:1536px;
    }
  }
}
.internal--mobiles--show--component .header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--mobiles--show--component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--mobiles--show--component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.internal--mobiles--submenu--component{
  margin-bottom:1.5rem;
  margin-top:2rem;
  display:flex;
  border-bottom-width:1px;
}
.internal--mobiles--submenu--component .submenu-item{
  margin-right:2rem;
  padding-bottom:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--mobiles--submenu--component .submenu-item.active{
  margin-bottom:-1px;
  border-bottom-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--mobiles--submenu--component .submenu-item a{
  cursor:pointer;
}
.internal--mobiles--submenu--component .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

.internal--operator--accesses--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--operator--accesses--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--operator--accesses--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--operator--accesses--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--operator--accesses--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--operator--accesses--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--operator--accesses--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--operator--accesses--index-component{
      max-width:1536px;
    }
  }
}
.internal--operator--accesses--index-component .table-wrapper{
  margin-bottom:1.5rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--operator--accesses--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--operator--accesses--index-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--operator--accesses--index-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--operator--accesses--index-component .table-wrapper th.name, .internal--operator--accesses--index-component .table-wrapper td.name {
  width: 38%;
}

.internal--operators--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--operators--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--operators--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--operators--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--operators--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--operators--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--operators--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--operators--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--operators--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--operators--index{
      max-width:1536px;
    }
  }
}
.internal--operators--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--operators--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--operators--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--operators--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--operators--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--operators--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--operators--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--operators--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--operators--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--operators--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--operators--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--operators--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--operators--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--operators--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--operators--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--operators--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--operators--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--operators--index .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--operators--index .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--operators--index .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--operators--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--operators--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--operators--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--operators--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--operators--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

.internal--operator--realms--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--operator--realms--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--operator--realms--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--operator--realms--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--operator--realms--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--operator--realms--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--operator--realms--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--operator--realms--index-component{
      max-width:1536px;
    }
  }
}
.internal--operator--realms--index-component .table-wrapper{
  margin-bottom:1.5rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--operator--realms--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--operator--realms--index-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--operator--realms--index-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--operator--realms--index-component .table-wrapper td a.button{
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--operator--realms--index-component .table-wrapper td a.button:hover{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.internal--operator--realms--index-component .table-wrapper th.name, .internal--operator--realms--index-component .table-wrapper td.name {
  width: 38%;
}
.internal--operator--realms--index-component .table-wrapper th.action, .internal--operator--realms--index-component .table-wrapper td.action {
  width: 20%;
}

@media (min-width: 1024px){
  .operators--show{
    width:100%;
  }
  @media (min-width: 640px){
    .operators--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .operators--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .operators--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .operators--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .operators--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .operators--show{
      max-width:1536px;
    }
  }
}
.operators--show .copy-clipboard{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.125rem;
  --tw-bg-opacity:1;
  background-color:rgba(107, 114, 128, var(--tw-bg-opacity));
  padding:0.5rem;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.operators--show .copy-clipboard:hover{
  --tw-bg-opacity:1;
  background-color:rgba(156, 163, 175, var(--tw-bg-opacity));
}
.operators--show .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.operators--show .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .operators--show .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}

.internal--workstations--index-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--workstations--index-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--workstations--index-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--workstations--index-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--workstations--index-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--workstations--index-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--workstations--index-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--workstations--index-component{
      max-width:1536px;
    }
  }
}
.internal--workstations--index-component .table-wrapper{
  margin-bottom:1.5rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--workstations--index-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--workstations--index-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--workstations--index-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--workstations--index-component .table-wrapper th.name, .internal--workstations--index-component .table-wrapper td.name {
  width: 38%;
}
.internal--workstations--index-component .table-wrapper th.actions, .internal--workstations--index-component .table-wrapper td.actions {
  width: 8%;
}
.internal--workstations--index-component .button-sm{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.internal--workstations--index-component .button-sm:hover{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--workstations--index-component .button-sm .icon{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--passwords--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--passwords--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--passwords--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--passwords--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--passwords--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--passwords--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--passwords--edit{
      max-width:1536px;
    }
  }
}
.internal--passwords--edit .main-configuration-module{
  display:flex;
}
.internal--passwords--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--passwords--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--passwords--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--passwords--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--passwords--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--passwords--edit .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--passwords--edit .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--passwords--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--passwords--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--passwords--edit .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--passwords--edit .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--realms--devices-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--realms--devices-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--realms--devices-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--realms--devices-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--realms--devices-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--realms--devices-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--realms--devices-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--realms--devices-component{
      max-width:1536px;
    }
  }
}
.internal--realms--devices-component .table-wrapper{
  margin-bottom:2rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--realms--devices-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--realms--devices-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--realms--devices-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--realms--devices-component .table-wrapper th.name, .internal--realms--devices-component .table-wrapper td.name {
  width: 36%;
}
.internal--realms--devices-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--realms--devices-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--realms--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--realms--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--realms--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--realms--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--realms--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--realms--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--realms--edit{
      max-width:1536px;
    }
  }
}
.internal--realms--edit .main-configuration-module{
  display:flex;
}
.internal--realms--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--realms--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--realms--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--realms--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--realms--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--realms--edit .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--realms--edit .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--realms--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--realms--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--realms--edit .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--realms--edit .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--realm-events--index-component .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1152px){
  .internal--realm-events--index-component .mobile-bar{
    display:none;
  }
}
.internal--realm-events--index-component .mobile-bar .action-menu, .internal--realm-events--index-component .mobile-bar .sub-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.internal--realm-events--index-component .mobile-bar .action-menu .mobile-button, .internal--realm-events--index-component .mobile-bar .sub-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
}
.internal--realm-events--index-component .mobile-bar .action-menu .mobile-button.primary, .internal--realm-events--index-component .mobile-bar .sub-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--realm-events--index-component .mobile-bar .action-menu .mobile-button.destroy, .internal--realm-events--index-component .mobile-bar .sub-menu .mobile-button.destroy{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}
.internal--realm-events--index-component .table-wrapper{
  display:none;
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}
@media (min-width: 768px){
  .internal--realm-events--index-component .table-wrapper{
    display:block;
  }
}
.internal--realm-events--index-component .table-wrapper tr:last-child td:first-child .overable, .internal--realm-events--index-component .table-wrapper tr:last-child td:first-child .not-overable{
  border-radius:0px;
}
.internal--realm-events--index-component .table-wrapper tr:last-child td:last-child .overable, .internal--realm-events--index-component .table-wrapper tr:last-child td:last-child .not-overable{
  border-radius:0px;
}
.internal--realm-events--index-component .table-wrapper td.date, .internal--realm-events--index-component .table-wrapper th.date{
  display:none;
}
@media (min-width: 1024px){
  .internal--realm-events--index-component .table-wrapper td.date, .internal--realm-events--index-component .table-wrapper th.date{
    display:table-cell;
  }
}
@media (min-width: 768px){
  .internal--realm-events--index-component .list-wrapper{
    display:none;
  }
}
.internal--realm-events--index-component .list-wrapper .event-item:first-child{
  margin-top:0px;
}
.internal--realm-events--index-component .list-wrapper .event-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name a .event-name{
  word-break:break-all;
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a, .internal--realm-events--index-component .list-wrapper .date, .internal--realm-events--index-component .list-wrapper .user{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.internal--realm-events--index-component .list-wrapper .event-item .user{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a > svg.pending{
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a > svg.executed{
  --tw-text-opacity:1;
  color:rgba(5, 150, 105, var(--tw-text-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a > svg.in_progress{
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a > svg.incompleted{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a > svg.failed{
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.internal--realm-events--index-component .list-wrapper .event-item .name > a > svg.overridden{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
.internal--realm-events--index-component .pagination{
  padding-left:0.625rem;
  padding-right:0.625rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--realm-events--index-component .pagination:hover{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
@media (min-width: 768px){
  .internal--realm-events--index-component .pagination{
    padding-left:0px;
    padding-right:0px;
  }
}

.internal--realms--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--realms--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--realms--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--realms--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--realms--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--realms--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--realms--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--realms--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--realms--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--realms--index{
      max-width:1536px;
    }
  }
}
.internal--realms--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--realms--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--realms--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--realms--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--realms--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--realms--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--realms--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--realms--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--realms--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--realms--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--realms--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--realms--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--realms--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--realms--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--realms--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--realms--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--realms--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--realms--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--realms--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--realms--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--realms--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--realms--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

.internal--realms--operators-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--realms--operators-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--realms--operators-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--realms--operators-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--realms--operators-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--realms--operators-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--realms--operators-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--realms--operators-component{
      max-width:1536px;
    }
  }
}
.internal--realms--operators-component .table-wrapper{
  margin-bottom:2rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--realms--operators-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--realms--operators-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--realms--operators-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--realms--operators-component .table-wrapper td a.button{
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--realms--operators-component .table-wrapper td a.button:hover{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.internal--realms--operators-component .table-wrapper th.name, .internal--realms--operators-component .table-wrapper td.name {
  width: 36%;
}
.internal--realms--operators-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--realms--operators-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--realms--show{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--realms--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--realms--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--realms--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--realms--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--realms--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--realms--show{
      max-width:1536px;
    }
  }
}
.internal--realms--show .header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--realms--show .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--realms--show .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.internal--realms--submenu{
  margin-bottom:1.5rem;
  margin-top:2rem;
  display:flex;
  border-bottom-width:1px;
}
.internal--realms--submenu .submenu-item{
  margin-right:2rem;
  cursor:pointer;
  padding-bottom:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--realms--submenu .submenu-item.active{
  margin-bottom:-1px;
  border-bottom-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--realms--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

.internal--topbar{
  z-index:50;
  width:100%;
  --tw-bg-opacity:1;
  background-color:rgba(55, 65, 81, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.internal--topbar .mobile-menu-item{
  display:block;
  width:100%;
  text-align:left;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.internal--topbar .mobile-menu-item:hover{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.internal--topbar .mobile-menu-item div:hover{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}

.internal--sidebar{
  float:left;
  height:100vh;
  --tw-bg-opacity:1;
  background-color:rgba(55, 65, 81, var(--tw-bg-opacity));
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:center;
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
  width: 260px;
  max-width: 260px;
  min-width: 260px;
  position: fixed;
  bottom: 0;
  top: 0;
  overflow-y: auto;
  height: 100%;
}
.internal--sidebar .menu-item{
  height:2.75rem;
  border-radius:0.25rem;
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  line-height:2rem;
}
.internal--sidebar .menu-item:hover{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
  text-decoration:underline;
}
.internal--sidebar .menu-item.active{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
.internal--sidebar .menu-item.active .icon{
  margin-top:auto;
  margin-bottom:auto;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--sidebar .menu-item.active .label{
  margin-left:0.5rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--sidebar .menu-item .icon{
  align-self:center;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.internal--sidebar .menu-item .label{
  float:left;
  margin-left:0.5rem;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.internal--sidebar .menu-dashboard{
  margin-top:0.5rem;
  height:2.75rem;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  font-weight:600;
  line-height:2rem;
}
.internal--sidebar .menu-dashboard:hover{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
  text-decoration:underline;
}
.internal--sidebar .menu-dashboard .icon{
  float:right;
  margin-top:0.5rem;
  margin-right:0.375rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--sidebar .menu-dashboard .label{
  float:left;
  margin-left:0.5rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  body > main,
  body > div.container:not(.internal--sidebar):not(.internal--topbar) {
    margin-left: 260px;
  }
}
.internal--header-component{
  margin-bottom:1rem;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
@media (min-width: 640px){
  .internal--header-component{
    margin-bottom:1rem;
  }
  .internal--header-component{
    flex-direction:row;
  }
  .internal--header-component{
    align-items:center;
  }
  .internal--header-component{
    justify-content:space-between;
  }
}
.internal--header-component .title{
  border-radius:0.125rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-right:0.5rem;
  text-align:center;
  font-size:1.125rem;
  line-height:1.75rem;
  font-weight:600;
}
@media (min-width: 640px){
  .internal--header-component .title{
    text-align:left;
  }
  .internal--header-component .title{
    font-size:1.25rem;
    line-height:1.75rem;
  }
}
@media (min-width: 1024px){
  .internal--header-component .title{
    font-size:1.5rem;
    line-height:2rem;
  }
}
.internal--header-component .title .title-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
}
@media (min-width: 640px){
  .internal--header-component .title .title-container{
    flex-direction:row;
  }
  .internal--header-component .title .title-container{
    align-items:center;
  }
  .internal--header-component .title .title-container{
    gap:0.75rem;
  }
}
.internal--header-component .title .main-title{
  flex-shrink:0;
}
.internal--header-component .title .parent-title{
  display:inline-flex;
  align-items:center;
  gap:0.375rem;
  background-image:linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from:#eff6ff;
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  --tw-gradient-to:#eef2ff;
  border-radius:9999px;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(191, 219, 254, var(--tw-border-opacity));
  font-size:0.875rem;
  line-height:1.25rem;
  font-weight:500;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
  transition-duration:200ms;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
}
.internal--header-component .title .parent-title:hover{
  background-image:linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from:#dbeafe;
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  --tw-gradient-to:#e0e7ff;
  --tw-scale-x:1.05;
  --tw-scale-y:1.05;
  transform:var(--tw-transform);
  --tw-border-opacity:1;
  border-color:rgba(147, 197, 253, var(--tw-border-opacity));
  --tw-shadow:0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.internal--header-component .title .parent-title:focus{
  outline:2px solid transparent;
  outline-offset:2px;
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(59, 130, 246, var(--tw-ring-opacity));
  --tw-ring-opacity:0.5;
}
.internal--header-component .title .parent-title::before {
  content: "↗";
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(96, 165, 250, var(--tw-text-opacity));
}
.internal--header-component .title .count{
  border-radius:0.5rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:0.375rem;
  padding-right:0.375rem;
  font-weight:300;
  --tw-text-opacity:1;
  color:rgba(29, 78, 216, var(--tw-text-opacity));
  display:inline-block;
}
.internal--header-component .header-component-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
}
@media (min-width: 640px){
  .internal--header-component .header-component-actions{
    flex-wrap:nowrap;
  }
  .internal--header-component .header-component-actions{
    justify-content:flex-end;
  }
}
.internal--header-component .buttons-group{
  margin-left:0px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.25rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--header-component .buttons-group{
    margin-left:0.5rem;
  }
  .internal--header-component .buttons-group{
    flex-wrap:nowrap;
  }
}
.internal--header-component .button-sm{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.875rem;
  padding-right:0.875rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.internal--header-component .button-sm:hover{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
@media (min-width: 640px){
  .internal--header-component .button-sm{
    padding-top:0.375rem;
    padding-bottom:0.375rem;
  }
  .internal--header-component .button-sm{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
.internal--header-component .button-sm .icon{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--header-component .button-sm.active{
  --tw-border-opacity:1;
  border-color:rgba(219, 234, 254, var(--tw-border-opacity));
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--header-component .button-sm.active:hover{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
}
.internal--header-component .badge{
  border-radius:0.125rem;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding-left:0.375rem;
  padding-right:0.375rem;
  padding-top:0.125rem;
  padding-bottom:0.125rem;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--header-component .input-search{
  width:100%;
  max-width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-top:0.375rem;
  padding-bottom:0.375rem;
}
.internal--header-component .input-search:focus-within{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--header-component .input-search{
    width:auto;
  }
  .internal--header-component .input-search{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
  }
}
.internal--header-component .input-search .icon{
  margin-right:0.25rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.internal--header-component .input-search input{
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.internal--header-component .input-search input:focus{
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--header-component .input-search input{
  width:85%;
}
@media (min-width: 640px){
  .internal--header-component .input-search input{
    width:auto;
  }
}

.internal--vrf-networks--devices-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--vrf-networks--devices-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--vrf-networks--devices-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--vrf-networks--devices-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--vrf-networks--devices-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--vrf-networks--devices-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--vrf-networks--devices-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--vrf-networks--devices-component{
      max-width:1536px;
    }
  }
}
.internal--vrf-networks--devices-component .table-wrapper{
  margin-bottom:2rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--vrf-networks--devices-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--vrf-networks--devices-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--vrf-networks--devices-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--vrf-networks--devices-component .table-wrapper th.name,
.internal--vrf-networks--devices-component .table-wrapper td.name {
  width: 36%;
}
.internal--vrf-networks--devices-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--vrf-networks--devices-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--vrf-networks--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--vrf-networks--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--vrf-networks--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--vrf-networks--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--vrf-networks--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--vrf-networks--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--vrf-networks--edit{
      max-width:1536px;
    }
  }
}
.internal--vrf-networks--edit .main-configuration-module{
  display:flex;
}
.internal--vrf-networks--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.internal--vrf-networks--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .internal--vrf-networks--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.internal--vrf-networks--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--vrf-networks--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--vrf-networks--edit .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--vrf-networks--edit .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--vrf-networks--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--vrf-networks--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--vrf-networks--edit .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--vrf-networks--edit .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--vrf-networks--index{
  width:100%;
  padding-left:1rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .internal--vrf-networks--index{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media (min-width: 768px){
  .internal--vrf-networks--index{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width: 1024px){
  .internal--vrf-networks--index{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--vrf-networks--index{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--vrf-networks--index{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--vrf-networks--index{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--vrf-networks--index{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--vrf-networks--index{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--vrf-networks--index{
      max-width:1536px;
    }
  }
}
.internal--vrf-networks--index .table-wrapper{
  overflow-x:auto;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--vrf-networks--index .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--vrf-networks--index .table-wrapper .table-head th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:400;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
@media (min-width: 640px){
  .internal--vrf-networks--index .table-wrapper .table-head th{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--vrf-networks--index .table-wrapper .table-head th{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--vrf-networks--index .table-wrapper .table-head th{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--vrf-networks--index .table-wrapper .table-head th{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--vrf-networks--index .table-wrapper .table-head th{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--vrf-networks--index .table-wrapper .table-head th{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--vrf-networks--index .table-wrapper tbody tr td{
  padding:0px;
}
.internal--vrf-networks--index .table-wrapper tbody tr td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 640px){
  .internal--vrf-networks--index .table-wrapper tbody tr td .overable{
    font-size:0.875rem;
    line-height:1.25rem;
  }
}
@media (min-width: 768px){
  .internal--vrf-networks--index .table-wrapper tbody tr td .overable{
    font-size:1rem;
    line-height:1.5rem;
  }
}
@media (min-width: 640px){
  .internal--vrf-networks--index .table-wrapper tbody tr td .overable{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .internal--vrf-networks--index .table-wrapper tbody tr td .overable{
    padding-left:0.75rem;
    padding-right:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--vrf-networks--index .table-wrapper tbody tr td .overable{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
  .internal--vrf-networks--index .table-wrapper tbody tr td .overable{
    padding-left:1rem;
    padding-right:1rem;
  }
}
.internal--vrf-networks--index .table-wrapper tbody tr td .status-led-w{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
@media (min-width: 640px){
  .internal--vrf-networks--index .table-wrapper tbody tr td .status-led-w{
    padding-top:0.75rem;
    padding-bottom:0.75rem;
  }
}
@media (min-width: 768px){
  .internal--vrf-networks--index .table-wrapper tbody tr td .status-led-w{
    padding-top:1rem;
    padding-bottom:1rem;
  }
}
.internal--vrf-networks--index .table-wrapper tbody tr:hover td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.internal--vrf-networks--index .table-wrapper tr{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.internal--vrf-networks--index .table-wrapper tr:last-child{
  border-bottom-width:0px;
  padding:0px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--vrf-networks--index .table-wrapper tr:last-child td:first-child .overable{
  border-bottom-left-radius:0.25rem;
}
.internal--vrf-networks--index .table-wrapper tr:last-child td:last-child .overable{
  border-bottom-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .internal--vrf-networks--new{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--vrf-networks--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--vrf-networks--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--vrf-networks--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--vrf-networks--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--vrf-networks--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--vrf-networks--new{
      max-width:1536px;
    }
  }
}
.internal--vrf-networks--new .main-configuration-module{
  display:flex;
}
.internal--vrf-networks--new .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--vrf-networks--new .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--vrf-networks--new .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.internal--vrf-networks--new .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.internal--vrf-networks--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--vrf-networks--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.internal--vrf-networks--new .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.internal--vrf-networks--new .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.internal--vrf-networks--realms-component{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--vrf-networks--realms-component{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--vrf-networks--realms-component{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--vrf-networks--realms-component{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--vrf-networks--realms-component{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--vrf-networks--realms-component{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--vrf-networks--realms-component{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--vrf-networks--realms-component{
      max-width:1536px;
    }
  }
}
.internal--vrf-networks--realms-component .table-wrapper{
  margin-bottom:2rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.internal--vrf-networks--realms-component .table-wrapper .table-head{
  border-bottom-width:1px;
  text-align:left;
}
.internal--vrf-networks--realms-component .table-wrapper th{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  font-weight:400;
  font-weight:500;
  text-transform:uppercase;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.internal--vrf-networks--realms-component .table-wrapper td{
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  padding-right:1rem;
  padding-left:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--vrf-networks--realms-component .table-wrapper th.name,
.internal--vrf-networks--realms-component .table-wrapper td.name {
  width: 36%;
}
.internal--vrf-networks--realms-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.internal--vrf-networks--realms-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.internal--vrf-networks--show{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .internal--vrf-networks--show{
    width:100%;
  }
  @media (min-width: 640px){
    .internal--vrf-networks--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .internal--vrf-networks--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .internal--vrf-networks--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .internal--vrf-networks--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .internal--vrf-networks--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .internal--vrf-networks--show{
      max-width:1536px;
    }
  }
}

.internal--vrf-networks--submenu{
  margin-bottom:1.5rem;
  margin-top:2rem;
  display:flex;
  border-bottom-width:1px;
}
.internal--vrf-networks--submenu .submenu-item{
  margin-right:2rem;
  cursor:pointer;
  padding-bottom:0.5rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.internal--vrf-networks--submenu .submenu-item.active{
  margin-bottom:-1px;
  border-bottom-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.internal--vrf-networks--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

.invitations--header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.invitations--header .title{
  display:flex;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .invitations--header .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .invitations--header .title{
    display:block;
  }
  .invitations--header .title{
    border-style:none;
  }
  .invitations--header .title{
    background-color:transparent;
  }
  .invitations--header .title{
    padding-left:0px;
    padding-right:0px;
  }
  .invitations--header .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .invitations--header .title{
    line-height:1;
  }
  .invitations--new{
    width:100%;
  }
  @media (min-width: 640px){
    .invitations--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .invitations--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .invitations--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .invitations--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .invitations--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .invitations--new{
      max-width:1536px;
    }
  }
}
.invitations--new .main-configuration-module{
  display:flex;
}
.invitations--new .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.invitations--new .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .invitations--new .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.invitations--new .input input{
  display:inline-block;
  width:16.25rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.invitations--new .input input input[type=text]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}
.invitations--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.invitations--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.user-menu{
  bottom:0px;
  margin-top:0.75rem;
  margin-bottom:0.75rem;
  display:flex;
  width:100%;
  flex-direction:column-reverse;
  border-style:none;
}

@media (min-width: 768px){
  .user-menu{
    position:absolute;
  }
  .user-menu{
    margin-top:0px;
    margin-bottom:0px;
  }
  .user-menu{
    display:block;
  }
}
.user-menu .wrap-item{
  margin-left:auto;
  margin-right:auto;
  width:100%;
  cursor:pointer;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}
@media (min-width: 768px){
  .user-menu .wrap-item{
    width:12rem;
  }
  .user-menu .wrap-item{
    border-top-left-radius:0px;
    border-top-right-radius:0px;
  }
  .user-menu .wrap-item:hover{
    --tw-bg-opacity:1;
    background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  }
}
.user-menu .user-menu-item{
  position:relative;
  margin-left:auto;
  margin-right:auto;
  display:flex;
  width:100%;
  justify-content:space-between;
  background-color:transparent;
  padding-top:0.625rem;
  padding-bottom:0.625rem;
  padding-left:1.25rem;
  padding-right:1.25rem;
  font-weight:600;
}
@media (min-width: 768px){
  .user-menu .user-menu-item{
    width:12rem;
  }
}
.user-menu .user-menu-item .icon{
  align-self:center;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.user-menu .user-menu-item .label{
  margin-left:0.5rem;
  margin-right:0.5rem;
  text-transform:capitalize;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.user-menu .submenu{
  position:relative;
  z-index:50;
  margin-left:auto;
  margin-right:auto;
  width:100%;
  border-radius:0px;
  border-style:none;
  background-color:transparent;
  --tw-shadow:0 0 #0000;
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 768px){
  .user-menu .submenu{
    width:12rem;
  }
}
.user-menu .submenu li{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
  text-align:left;
}
.user-menu .submenu li:hover{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.user-menu .submenu li a div{
  margin-left:0.75rem;
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  padding-left:1.25rem;
  padding-right:1.25rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.user-menu .submenu li a div:hover{
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
}
@media (min-width: 768px){
  .user-menu .submenu li:first-child{
    border-top-left-radius:0.25rem;
    border-top-right-radius:0.25rem;
  }
}
.user-menu .submenu li:last-child{
  border-bottom-right-radius:0.25rem;
  border-bottom-left-radius:0.25rem;
}
@media (min-width: 768px){
  .user-menu .submenu li:last-child{
    border-bottom-right-radius:0px;
    border-bottom-left-radius:0px;
  }
  .user-menu .submenu li:last-child{
    border-bottom-width:1px;
  }
  .user-menu .submenu li:last-child{
    --tw-border-opacity:1;
    border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  }
}
.user-menu .submenu li:first-child{
  border-top-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
}
@media (min-width: 768px){
  .user-menu .submenu li:first-child{
    border-top-width:0px;
  }
}
.user-menu.menu-open .wrap-item{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
.user-menu.menu-open .wrap-item .chevron {
  rotate: 180deg;
}

.operator-accesses--index-component .overable, .operator-accesses--index-component .not-overable{
  height:3rem;
}
.operator-accesses--index-component .mobile-bar{
  margin-top:1.5rem;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .operator-accesses--index-component .mobile-bar{
    display:none;
  }
}
.operator-accesses--index-component .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.operator-accesses--index-component .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.operator-accesses--index-component .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.operator-accesses--index-component .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.operator-accesses--index-component .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.operator-accesses--index-component .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.operator-accesses--index-component .menu-buttons{
  margin-top:1rem;
  margin-bottom:1rem;
  display:none;
  flex-direction:column;
  align-items:flex-start;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .operator-accesses--index-component .menu-buttons{
    margin-left:0px;
    margin-right:0px;
  }
  .operator-accesses--index-component .menu-buttons{
    flex-direction:row;
  }
  .operator-accesses--index-component .menu-buttons{
    align-items:center;
  }
  .operator-accesses--index-component .menu-buttons{
    justify-content:flex-end;
  }
  .operator-accesses--index-component .menu-buttons{
    border-style:none;
  }
  .operator-accesses--index-component .menu-buttons{
    background-color:transparent;
  }
}
@media (min-width: 1152px){
  .operator-accesses--index-component .menu-buttons{
    display:flex;
  }
}
.operator-accesses--index-component .menu-buttons.cancel{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.operator-accesses--index-component .menu-buttons.cancel:hover{
  --tw-bg-opacity:1;
  background-color:rgba(252, 211, 77, var(--tw-bg-opacity));
}
.operator-accesses--index-component .menu-buttons.cancel .icon{
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.operator-accesses--index-component .table-wrapper{
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}
.operator-accesses--index-component .table-wrapper tbody tr{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.operator-accesses--index-component .table-wrapper thead, .operator-accesses--index-component .table-wrapper tbody tr{
  display:table;
  width:100%;
  table-layout: fixed; /* even columns width , fix width of table too*/
}
.operator-accesses--index-component .table-wrapper thead {
  width: 100%;
}
.operator-accesses--index-component .table-wrapper th.name, .operator-accesses--index-component .table-wrapper td.name{
  overflow:scroll;
}
.operator-accesses--index-component .table-wrapper td.network, .operator-accesses--index-component .table-wrapper th.network{
  display:none;
}
@media (min-width: 1152px){
  .operator-accesses--index-component .table-wrapper td.network, .operator-accesses--index-component .table-wrapper th.network{
    display:table-cell;
  }
}
.operator-accesses--index-component .table-wrapper tbody td:first-child,
.operator-accesses--index-component .table-wrapper tbody th:first-child,
.operator-accesses--index-component .table-wrapper tbody td:last-child,
.operator-accesses--index-component .table-wrapper tbody th:last-child,
.operator-accesses--index-component .table-wrapper thead td:first-child,
.operator-accesses--index-component .table-wrapper thead th:first-child,
.operator-accesses--index-component .table-wrapper thead td:last-child,
.operator-accesses--index-component .table-wrapper thead th:last-child {
  width: 48px;
}

@media (min-width: 1024px){
  .operators--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .operators--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .operators--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .operators--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .operators--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .operators--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .operators--edit{
      max-width:1536px;
    }
  }
}
.operators--edit .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .operators--edit .mobile-bar{
    display:none;
  }
}
.operators--edit .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.operators--edit .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.operators--edit .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.operators--edit .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.operators--edit .main-configuration-module{
  display:flex;
}
@media (min-width: 1024px) {
  .operators--edit .main-configuration-module .wide-card-column{
    width:50%;
  }
}
.operators--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.operators--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .operators--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.operators--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.operators--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.operators--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.operators--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.operators--header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.operators--header .title{
  display:flex;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .operators--header .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .operators--header .title{
    display:block;
  }
  .operators--header .title{
    border-style:none;
  }
  .operators--header .title{
    background-color:transparent;
  }
  .operators--header .title{
    padding-left:0px;
    padding-right:0px;
  }
  .operators--header .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .operators--header .title{
    line-height:1;
  }
}

.operators--index .table-wrapper{
  display:none;
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .operators--index .table-wrapper{
    display:block;
  }
}
.operators--index .table-wrapper td.created_at, .operators--index .table-wrapper th.created_at{
  display:none;
}
@media (min-width: 1280px){
  .operators--index .table-wrapper td.created_at, .operators--index .table-wrapper th.created_at{
    display:table-cell;
  }
}
.operators--index .table-wrapper td.first_name, .operators--index .table-wrapper th.first_name{
  display:none;
}
@media (min-width: 1024px){
  .operators--index .table-wrapper td.first_name, .operators--index .table-wrapper th.first_name{
    display:table-cell;
  }
}
.operators--index .table-wrapper td.last_name, .operators--index .table-wrapper th.last_name{
  display:none;
}
@media (min-width: 1024px){
  .operators--index .table-wrapper td.last_name, .operators--index .table-wrapper th.last_name{
    display:table-cell;
  }
}
.operators--index .table-wrapper .invitation-td{
  display:none;
}
@media (min-width: 1024px){
  .operators--index .table-wrapper .invitation-td{
    display:table-cell;
  }
}
.operators--index .table-wrapper td.name, .operators--index .table-wrapper th.name{
  display:none;
}
@media (min-width: 1024px){
  .operators--index .table-wrapper td.name, .operators--index .table-wrapper th.name{
    display:table-cell;
  }
}
.operators--index .table-wrapper tr:last-child td:first-child {
  border-bottom-left-radius: 0.25rem;
}
.operators--index .table-wrapper tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}
@media (min-width: 1024px){
  .operators--index .list-wrapper{
    display:none;
  }
}
.operators--index .list-wrapper .operator-item:first-child{
  margin-top:0px;
}
.operators--index .list-wrapper .operator-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.operators--index .list-wrapper .operator-item .name a .operator-name{
  overflow:scroll;
}
.operators--index .list-wrapper .operator-item .name > a, .operators--index .list-wrapper .email, .operators--index .list-wrapper .role{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.operators--index .list-wrapper .operator-item .email{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.operators--index .list-wrapper .invitation-item:first-child{
  margin-top:0px;
}
.operators--index .list-wrapper .invitation-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.operators--index .list-wrapper .invitation-item.pending{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(217, 119, 6, var(--tw-text-opacity));
}
.operators--index .list-wrapper .invitation-item.rejected{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.operators--index .list-wrapper .invitation-item .email, .operators--index .list-wrapper .role, .operators--index .list-wrapper .action{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.operators--index .list-wrapper .invitation-item .role{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.operators--index tbody .overable, .operators--index tbody .not-overable{
  height:3rem;
}
.operators--index tbody tr.selected td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
.operators--index tbody tr.pending{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(254, 243, 199, var(--tw-border-opacity));
}
.operators--index tbody tr.pending td .not-overable{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(217, 119, 6, var(--tw-text-opacity));
}
.operators--index tbody tr.rejected{
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(254, 226, 226, var(--tw-border-opacity));
}
.operators--index tbody tr.rejected td .not-overable{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.operators--index table td div{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.operators--index .trash-cell{
  width:4rem;
}

@media (min-width: 1024px){
  .operators--show{
    width:100%;
  }
  @media (min-width: 640px){
    .operators--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .operators--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .operators--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .operators--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .operators--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .operators--show{
      max-width:1536px;
    }
  }
}
.operators--show .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .operators--show .mobile-bar{
    display:none;
  }
}
.operators--show .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.operators--show .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.operators--show .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.operators--show .mobile-bar .action-menu .mobile-button.destroy{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}
.operators--show .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.operators--show .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .operators--show .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}

.operators--submenu{
  margin-top:0px;
  margin-bottom:0px;
  display:flex;
  border-width:0px;
}

@media (min-width: 1152px){
  .operators--submenu{
    margin-top:1.5rem;
    margin-bottom:1.5rem;
  }
  .operators--submenu{
    margin-left:0px;
    margin-right:0px;
  }
  .operators--submenu{
    margin-top:2rem;
  }
  .operators--submenu{
    border-bottom-width:1px;
  }
}
.operators--submenu .submenu-item{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .operators--submenu .submenu-item{
    margin-right:2rem;
  }
  .operators--submenu .submenu-item{
    display:block;
  }
  .operators--submenu .submenu-item{
    padding-bottom:0.5rem;
  }
}
@media (min-width: 768px){
  .operators--submenu .submenu-item.backbutton{
    display:none;
  }
}
.operators--submenu .submenu-item a{
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1rem;
  padding-bottom:1rem;
}
.operators--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .operators--submenu .submenu-item a{
    padding-left:0px;
    padding-right:0px;
  }
  .operators--submenu .submenu-item a{
    padding-top:0px;
    padding-bottom:0px;
  }
}
.operators--submenu .submenu-item a .fa-hard-drive {
  rotate: 90deg;
}
.operators--submenu .submenu-item.active{
  margin-bottom:-1px;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .operators--submenu .submenu-item.active{
    display:block;
  }
  .operators--submenu .submenu-item.active{
    border-bottom-width:2px;
  }
  .operators--submenu .submenu-item.active{
    --tw-border-opacity:1;
    border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  }
}

@media (min-width: 1024px){
  .realms--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .realms--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .realms--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .realms--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .realms--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .realms--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .realms--edit{
      max-width:1536px;
    }
  }
}
.realms--edit .main-configuration-module{
  display:flex;
}
.realms--edit .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.realms--edit .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .realms--edit .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.realms--edit .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.realms--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.realms--edit .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.realms--edit .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.realms--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.realms--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.realm-events--index-component .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1152px){
  .realm-events--index-component .mobile-bar{
    display:none;
  }
}
.realm-events--index-component .mobile-bar .action-menu, .realm-events--index-component .mobile-bar .sub-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.realm-events--index-component .mobile-bar .action-menu .mobile-button, .realm-events--index-component .mobile-bar .sub-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
}
.realm-events--index-component .mobile-bar .action-menu .mobile-button.primary, .realm-events--index-component .mobile-bar .sub-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.realm-events--index-component .mobile-bar .action-menu .mobile-button.destroy, .realm-events--index-component .mobile-bar .sub-menu .mobile-button.destroy{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}
.realm-events--index-component .table-wrapper{
  display:none;
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}
@media (min-width: 768px){
  .realm-events--index-component .table-wrapper{
    display:block;
  }
}
.realm-events--index-component .table-wrapper tr:last-child td:first-child .overable, .realm-events--index-component .table-wrapper tr:last-child td:first-child .not-overable{
  border-radius:0px;
}
.realm-events--index-component .table-wrapper tr:last-child td:last-child .overable, .realm-events--index-component .table-wrapper tr:last-child td:last-child .not-overable{
  border-radius:0px;
}
.realm-events--index-component .table-wrapper td.date, .realm-events--index-component .table-wrapper th.date{
  display:none;
}
@media (min-width: 1024px){
  .realm-events--index-component .table-wrapper td.date, .realm-events--index-component .table-wrapper th.date{
    display:table-cell;
  }
}
@media (min-width: 768px){
  .realm-events--index-component .list-wrapper{
    display:none;
  }
}
.realm-events--index-component .list-wrapper .event-item:first-child{
  margin-top:0px;
}
.realm-events--index-component .list-wrapper .event-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name a .event-name{
  word-break:break-all;
}
.realm-events--index-component .list-wrapper .event-item .name > a, .realm-events--index-component .list-wrapper .date, .realm-events--index-component .list-wrapper .user{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.realm-events--index-component .list-wrapper .event-item .user{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name > a > svg.pending{
  --tw-text-opacity:1;
  color:rgba(245, 158, 11, var(--tw-text-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name > a > svg.executed{
  --tw-text-opacity:1;
  color:rgba(5, 150, 105, var(--tw-text-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name > a > svg.in_progress{
  --tw-text-opacity:1;
  color:rgba(124, 58, 237, var(--tw-text-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name > a > svg.failed{
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name > a > svg.incompleted{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
.realm-events--index-component .list-wrapper .event-item .name > a > svg.overridden{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
.realm-events--index-component .pagination{
  padding-left:0.625rem;
  padding-right:0.625rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.realm-events--index-component .pagination:hover{
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
@media (min-width: 768px){
  .realm-events--index-component .pagination{
    padding-left:0px;
    padding-right:0px;
  }
}

.realm-events--show-component .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1152px){
  .realm-events--show-component .mobile-bar{
    display:none;
  }
}
.realm-events--show-component .mobile-bar .action-menu, .realm-events--show-component .mobile-bar .sub-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.realm-events--show-component .mobile-bar .action-menu .mobile-button, .realm-events--show-component .mobile-bar .sub-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
}
.realm-events--show-component .mobile-bar .action-menu .mobile-button.primary, .realm-events--show-component .mobile-bar .sub-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.realm-events--show-component .mobile-bar .action-menu .mobile-button.destroy, .realm-events--show-component .mobile-bar .sub-menu .mobile-button.destroy{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}

.realms--header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.realms--header .title{
  display:flex;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .realms--header .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .realms--header .title{
    display:block;
  }
  .realms--header .title{
    border-style:none;
  }
  .realms--header .title{
    background-color:transparent;
  }
  .realms--header .title{
    padding-left:0px;
    padding-right:0px;
  }
  .realms--header .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .realms--header .title{
    line-height:1;
  }
}

.realms--index .table-wrapper{
  display:none;
  border-radius:0px;
  border-top-left-radius:0.25rem;
  border-top-right-radius:0.25rem;
}

@media (min-width: 1024px){
  .realms--index .table-wrapper{
    display:block;
  }
}
.realms--index .table-wrapper tr:last-child td:first-child {
  border-bottom-left-radius: 0.25rem;
}
.realms--index .table-wrapper tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}
@media (min-width: 1024px){
  .realms--index .list-wrapper{
    display:none;
  }
}
.realms--index .list-wrapper .realm-item:first-child{
  margin-top:0px;
}
.realms--index .list-wrapper .realm-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.realms--index .list-wrapper .realm-item .name{
  overflow:scroll;
}
.realms--index .list-wrapper .realm-item .name, .realms--index .list-wrapper .role{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.realms--index .list-wrapper .realm-item .role{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.realms--index tbody .overable, .realms--index tbody .not-overable{
  height:3rem;
}
.realms--index tbody tr.selected td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}

.realms--modal{
  position:fixed;
  top:0px;
  right:0px;
  bottom:0px;
  left:0px;
  z-index:50;
  overflow-y:auto;
}

@media (min-width: 1024px){
  .realms--new{
    width:100%;
  }
  @media (min-width: 640px){
    .realms--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .realms--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .realms--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .realms--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .realms--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .realms--new{
      max-width:1536px;
    }
  }
}
.realms--new .main-configuration-module{
  display:flex;
}
.realms--new .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.realms--new .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.realms--new .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.realms--new .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.realms--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.realms--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .realms--show{
    width:100%;
  }
  @media (min-width: 640px){
    .realms--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .realms--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .realms--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .realms--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .realms--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .realms--show{
      max-width:1536px;
    }
  }
}
.realms--show .header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.realms--show .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .realms--show .mobile-bar{
    display:none;
  }
}
.realms--show .mobile-bar .action-menu, .realms--show .mobile-bar .sub-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.realms--show .mobile-bar .action-menu .mobile-button, .realms--show .mobile-bar .sub-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
}
.realms--show .mobile-bar .action-menu .mobile-button.primary, .realms--show .mobile-bar .sub-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.realms--show .mobile-bar .action-menu .mobile-button.destroy, .realms--show .mobile-bar .sub-menu .mobile-button.destroy{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}
.realms--show .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.realms--show .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.realms--submenu{
  display:flex;
}

@media (min-width: 1152px){
  .realms--submenu{
    margin-top:1.5rem;
    margin-bottom:1.5rem;
  }
  .realms--submenu{
    margin-left:0px;
    margin-right:0px;
  }
  .realms--submenu{
    margin-top:2rem;
  }
  .realms--submenu{
    border-bottom-width:1px;
  }
}
.realms--submenu .submenu-item{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .realms--submenu .submenu-item{
    margin-right:2rem;
  }
  .realms--submenu .submenu-item{
    display:block;
  }
  .realms--submenu .submenu-item{
    padding-bottom:0.5rem;
  }
}
@media (min-width: 768px){
  .realms--submenu .submenu-item.backbutton{
    display:none;
  }
}
.realms--submenu .submenu-item a{
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1rem;
  padding-bottom:1rem;
}
.realms--submenu .submenu-item a:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .realms--submenu .submenu-item a{
    padding-left:0px;
    padding-right:0px;
  }
  .realms--submenu .submenu-item a{
    padding-top:0px;
    padding-bottom:0px;
  }
}
.realms--submenu .submenu-item a .fa-hard-drive {
  rotate: 90deg;
}
.realms--submenu .submenu-item.active{
  margin-bottom:-1px;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}
@media (min-width: 1152px){
  .realms--submenu .submenu-item.active{
    display:block;
  }
  .realms--submenu .submenu-item.active{
    border-bottom-width:2px;
  }
  .realms--submenu .submenu-item.active{
    --tw-border-opacity:1;
    border-color:rgba(37, 99, 235, var(--tw-border-opacity));
  }
}

.ui--card{
  margin-top:1rem;
  margin-bottom:1rem;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:1rem;
  padding-bottom:1rem;
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.ui--header-audit-connections{
  display:none;
}

@media (min-width: 1024px){
  .ui--header-audit-connections{
    display:flex;
  }
  .ui--header-audit-connections{
    align-items:center;
  }
  .ui--header-audit-connections{
    justify-content:space-between;
  }
}
.ui--header-audit-connections .pressed{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui--header-audit-connections button.button-sm{
  margin-left:0.25rem;
}

.header-component{
  margin-bottom:0px;
  display:block;
}

@media (min-width: 1024px){
  .header-component{
    margin-bottom:1.5rem;
  }
  .header-component{
    display:flex;
  }
  .header-component{
    justify-content:space-between;
  }
}
.header-component .title{
  display:flex;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .header-component .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .header-component .title{
    display:block;
  }
  .header-component .title{
    border-style:none;
  }
  .header-component .title{
    background-color:transparent;
  }
  .header-component .title{
    padding-left:0px;
    padding-right:0px;
  }
  .header-component .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .header-component .title{
    line-height:1;
  }
}
.header-component .rotate-45 {
  rotate: 45deg;
}
.header-component .tags{
  border-bottom-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding:1.25rem;
}
@media (min-width: 768px){
  .header-component .tags{
    display:none;
  }
}
.header-component .header-component-actions{
  margin-top:1.25rem;
  margin-bottom:1.25rem;
  margin-left:1.25rem;
  margin-right:1.25rem;
  display:flex;
  justify-content:space-between;
}
@media (min-width: 1024px){
  .header-component .header-component-actions{
    margin-top:0px;
    margin-bottom:0px;
  }
  .header-component .header-component-actions{
    margin-left:0px;
    margin-right:0px;
  }
  .header-component .header-component-actions{
    align-items:center;
  }
}
.header-component .buttons-group{
  font-size:0.75rem;
  line-height:1rem;
}
@media (min-width: 768px){
  .header-component .buttons-group{
    margin-right:0.5rem;
  }
}
.header-component .button-sm{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top:0.375rem;
  padding-bottom:0.375rem;
  padding-left:0.75rem;
  padding-right:0.75rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.header-component .button-sm:hover{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.header-component .button-sm .icon{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.header-component .button-sm.pressed .icon{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}

.ui--header-devices{
  display:none;
}

@media (min-width: 1024px){
  .ui--header-devices{
    display:flex;
  }
  .ui--header-devices{
    align-items:center;
  }
  .ui--header-devices{
    justify-content:space-between;
  }
}
.ui--header-devices .pressed{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .ui--header-devices button.button-sm{
    margin-left:0.25rem;
  }
}
@media screen and (max-width: 783px) {
  .ui--header-devices button.button-sm.with-text span{
    display:none;
  }
}
.ui--header-devices button.button-sm.pressed{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}

.ui--header-operators{
  display:none;
}

@media (min-width: 1024px){
  .ui--header-operators{
    display:flex;
  }
  .ui--header-operators{
    align-items:center;
  }
  .ui--header-operators{
    justify-content:space-between;
  }
}
.ui--header-operators .pressed{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui--header-operators button.button-sm{
  margin-left:0.25rem;
}

.ui--header-realms{
  display:none;
}

@media (min-width: 1024px){
  .ui--header-realms{
    display:flex;
  }
  .ui--header-realms{
    align-items:center;
  }
  .ui--header-realms{
    justify-content:space-between;
  }
}
.ui--header-realms .pressed{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui--header-realms button.button-sm{
  margin-left:0.25rem;
}

.ui--header-workstations{
  display:none;
}

@media (min-width: 1024px){
  .ui--header-workstations{
    display:flex;
  }
  .ui--header-workstations{
    align-items:center;
  }
  .ui--header-workstations{
    justify-content:space-between;
  }
}
.ui--header-workstations .pressed{
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui--header-workstations button.button-sm{
  margin-left:0.25rem;
}

.ui--help-button--component{
  position:fixed;
  right:1.25rem;
  bottom:1.25rem;
  display:none;
}

@media (min-width: 768px){
  .ui--help-button--component{
    display:flex;
  }
}
.ui--help-button--component a{
  z-index:10;
  display:flex;
  height:50px;
  width:50px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  --tw-bg-opacity:1;
  background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}

.ui--input--toggle-component{
  position:relative;
  display:inline-block;
  vertical-align:middle;
  height: 1em;
  width: 2em;
  margin-right: 4px;
}
.ui--input--toggle-component .slider {
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position:absolute;
  top:0px;
  right:0px;
  bottom:0px;
  left:0px;
  cursor:pointer;
  border-radius:9999px;
}
.ui--input--toggle-component .slider:before {
  position: absolute;
  content: "";
  height: calc(1em - 4px);
  width: calc(1em - 4px);
  left: 2px;
  bottom: 2px;
  top: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ui--input--toggle-component input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ui--input--toggle-component input:checked + .slider {
  background-color: #2196F3;
}
.ui--input--toggle-component input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.ui--input--toggle-component input:checked + .slider:before {
  -webkit-transform: translateX(1em);
  -ms-transform: translateX(1em);
  transform: translateX(1em);
}
.ui--input--toggle-component input:disabled + .slider {
  opacity: 0.5;
  cursor: initial;
}
.ui--input--toggle-component .slider:before {
  border-radius: 50%;
}

.ui--text-area-tags{
  display:inline-block;
  width:100%;
  overflow:auto;
  border-radius:0.25rem;
}
.ui--text-area-tags tags {
  --tags-focus-border-color: #D1D5DB;
  --tags-hover-border-color: #D1D5DB;
}
.ui--text-area-tags .tagify{
  border-radius:0.25rem;
}
.ui--text-area-tags textarea{
  width:100%;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui--ip-address{
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.ui--ip-address .label{
  margin-bottom:0.25rem;
  display:block;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--ip-address input[type=text]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui--ip-address-layer2{
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.ui--ip-address-layer2 .label{
  margin-bottom:0.25rem;
  display:block;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--ip-address-layer2 input[type=text]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui--ip-address-port{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.ui--ip-address-port .ip-address, .ui--ip-address-port .port{
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.ui--ip-address-port .ip-address .label, .ui--ip-address-port .port .label{
  margin-bottom:0.25rem;
  display:block;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--ip-address-port .ip-address input[type=text], .ui--ip-address-port .ip-address input[type=number], .ui--ip-address-port .port input[type=text], .ui--ip-address-port .port input[type=number]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui--ip-address-port .separator{
  margin-left:0.5rem;
  margin-right:0.5rem;
  font-size:1.5rem;
  line-height:2rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}

.ui--ip-address-prefix .cidr{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:flex-start;
}
.ui--ip-address-prefix .cidr .separator{
  margin-left:0.5rem;
  margin-right:0.5rem;
  font-size:1.5rem;
  line-height:2rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--ip-address-prefix .cidr .separator.dash{
  display:none;
}
@media (min-width: 640px){
  .ui--ip-address-prefix .cidr .separator.dash{
    display:block;
  }
}
.ui--ip-address-prefix .cidr .prefix{
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.ui--ip-address-prefix .cidr .prefix .disabled{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.ui--ip-address-prefix .cidr .label{
  margin-bottom:0.25rem;
  display:block;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--ip-address-prefix .cidr input[type=text]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui--ip-address-prefix .netmask{
  margin-top:0.25rem;
  display:block;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
  flex-basis: 100%;
}

.ui--text--location{
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.ui--text--location input[type=text]{
  width:100%;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui--notification{
  pointer-events:auto;
  position:fixed;
  left:0px;
  right:0px;
  bottom:3.5rem;
  z-index:50;
  margin-left:auto;
  margin-right:auto;
  display:flex;
  width:100%;
  justify-content:space-between;
  border-radius:0.25rem;
  border-style:none;
  --tw-bg-opacity:1;
  background-color:rgba(236, 253, 245, var(--tw-bg-opacity));
  padding-left:2rem;
  padding-right:2rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:center;
  --tw-text-opacity:1;
  color:rgba(6, 78, 59, var(--tw-text-opacity));
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px){
  .ui--notification{
    width:41.666667%;
  }
}
.ui--notification.error{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(127, 29, 29, var(--tw-text-opacity));
}
.ui--notification.alert{
  --tw-bg-opacity:1;
  background-color:rgba(255, 251, 235, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.ui--notification.hide{
  display:none;
}
.ui--notification.devise{
  bottom:7rem;
}

.input-search{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}

.input-search:focus-within{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.input-search button .icon{
  height:0.875rem;
  width:0.875rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.input-search input{
  padding-left:0.25rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.input-search input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui-search-events-component{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}

.ui-search-events-component:focus-within{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.ui-search-events-component button .icon{
  height:0.875rem;
  width:0.875rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui-search-events-component input{
  padding-left:0.25rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.ui-search-events-component input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui-search-events-component input {
  width: calc(100% - 32px);
}

.ui-search-devices-component{
  display:flex;
  align-items:center;
}
.ui-search-devices-component button .icon{
  height:0.875rem;
  width:0.875rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui-search-devices-component input{
  margin-right:0.25rem;
  flex-grow:1;
  padding-left:0.25rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.ui-search-devices-component input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui-search-devices-component input {
  width: calc(100% - 32px);
}

.ui-search-operators-component{
  display:flex;
  align-items:center;
}
.ui-search-operators-component button .icon{
  height:0.875rem;
  width:0.875rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui-search-operators-component input{
  margin-right:0.25rem;
  flex-grow:1;
  padding-left:0.25rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.ui-search-operators-component input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui-search-operators-component input {
  width: calc(100% - 32px);
}

.ui-search-events-component{
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}

.ui-search-events-component:focus-within{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.ui-search-events-component button .icon{
  height:0.875rem;
  width:0.875rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui-search-events-component input{
  padding-left:0.25rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.ui-search-events-component input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui-search-events-component input {
  width: calc(100% - 32px);
}

.ui-search-realms-component{
  margin-left:0px;
  margin-right:0px;
  flex-grow:1;
  border-radius:0.25rem;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0.375rem;
  padding-bottom:0.375rem;
}

.ui-search-realms-component:focus-within{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 768px){
  .ui-search-realms-component{
    margin-top:0px;
    margin-bottom:0px;
  }
  .ui-search-realms-component{
    flex:none;
  }
  .ui-search-realms-component{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
  }
}
.ui-search-realms-component button .icon{
  height:0.875rem;
  width:0.875rem;
  vertical-align:middle;
  --tw-text-opacity:1;
  color:rgba(209, 213, 219, var(--tw-text-opacity));
}
.ui-search-realms-component input{
  margin-right:0.25rem;
  padding-left:0.25rem;
  font-size:0.875rem;
  line-height:1.25rem;
}
.ui-search-realms-component input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui-search-realms-component input {
  width: calc(100% - 32px);
}

.ui--secret{
  display:inline-block;
  width:16.25rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-top: 4px;
  padding-bottom: 4px;
}
.ui--secret input[type=text], .ui--secret input[type=password]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}
.ui--secret .showed-secret:not(.hidden), .ui--secret .hidden-secret:not(.hidden){
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.ui--select select{
  width:14rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.sidebar{
  z-index:40;
  display:block;
  width:100%;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  text-align:center;
}

@media (min-width: 1024px){
  .sidebar{
    width:100%;
  }
  @media (min-width: 640px){
    .sidebar{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .sidebar{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .sidebar{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .sidebar{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .sidebar{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .sidebar{
      max-width:1536px;
    }
  }
  .sidebar{
    position:fixed;
  }
  .sidebar{
    top:0px;
  }
  .sidebar{
    bottom:0px;
  }
  .sidebar{
    float:left;
  }
  .sidebar{
    height:100%;
  }
  .sidebar{
    width:260px;
  }
  .sidebar{
    min-width:260px;
  }
  .sidebar{
    max-width:260px;
  }
  .sidebar{
    overflow-y:scroll;
  }
  .sidebar{
    --tw-bg-opacity:1;
    background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  }
  .sidebar{
    padding-top:1.25rem;
    padding-bottom:1.25rem;
  }
}

.sidebar {
  /*-ms-overflow-style: none;  IE and Edge */
  /*scrollbar-width: none;  Firefox */
  /*&::-webkit-scrollbar {
    display: none;
  } */
}
.sidebar .title-bar{
  display:flex;
  width:100%;
  align-content:center;
  justify-content:space-between;
}
@media (min-width: 1024px){
  .sidebar .title-bar{
    margin-top:3.5rem;
  }
  .sidebar .title-bar{
    display:block;
  }
  .sidebar .title-bar{
    border-bottom-width:1px;
  }
  .sidebar .title-bar{
    border-top-width:1px;
  }
  .sidebar .title-bar{
    --tw-bg-opacity:1;
    background-color:rgba(229, 229, 229, var(--tw-bg-opacity));
  }
}
.sidebar .title-bar .title{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  padding:0.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  padding-left:1.25rem;
  padding-right:1.25rem;
  text-align:left;
  font-size:1.125rem;
  line-height:1.75rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .sidebar .title-bar .title{
    margin-left:auto;
    margin-right:auto;
  }
  .sidebar .title-bar .title{
    width:12rem;
  }
  .sidebar .title-bar .title{
    padding-top:0.5rem;
    padding-bottom:0.5rem;
  }
  .sidebar .title-bar .title{
    text-align:center;
  }
}
.sidebar .toggler-icon{
  position:relative;
  display:block;
  width:1rem;
  --tw-bg-opacity:1;
  background-color:rgba(107, 114, 128, var(--tw-bg-opacity));
  transition-duration:300ms;
}
@media (min-width: 1024px){
  .sidebar .toggler-icon{
    display:none;
  }
}
.sidebar .toggler-icon {
  height: 2px;
  margin: 3px 0;
}
.sidebar .active > .toggler-icon:nth-child(1){
  --tw-rotate:45deg;
  transform:var(--tw-transform);
  transform:var(--tw-transform);
  top: 5px;
}
.sidebar .active > .toggler-icon:nth-child(2){
  opacity:0;
}
.sidebar .active > .toggler-icon:nth-child(3) {
  top: -5px;
  transform: rotate(135deg);
}
.sidebar ul.menu{
  position:absolute;
  z-index:40;
  margin-left:auto;
  margin-right:auto;
  margin-top:-0.25rem;
  height:100vh;
  width:100%;
  border-top-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  .sidebar ul.menu{
    position:relative;
  }
  .sidebar ul.menu{
    margin-top:3.5rem;
    margin-bottom:3.5rem;
  }
  .sidebar ul.menu{
    display:block;
  }
  .sidebar ul.menu{
    height:auto;
  }
  .sidebar ul.menu{
    width:12rem;
  }
  .sidebar ul.menu{
    border-width:0px;
  }
  .sidebar ul.menu{
    background-color:transparent;
  }
}
.sidebar .menu-item{
  display:flex;
  justify-content:flex-start;
  border-radius:0.25rem;
  padding-top:0.625rem;
  padding-bottom:0.625rem;
  padding-left:1.25rem;
  padding-right:1.25rem;
}
.sidebar .menu-item:hover{
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.sidebar .menu-item.active{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}
.sidebar .menu-item.active .icon{
  margin-top:auto;
  margin-bottom:auto;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.sidebar .menu-item.active .label{
  margin-left:0.75rem;
  margin-right:0.75rem;
  margin-top:auto;
  margin-bottom:auto;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.sidebar .menu-item.active:hover{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.sidebar .menu-item .icon{
  align-self:center;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.sidebar .menu-item .label{
  margin-left:0.75rem;
  margin-right:0.75rem;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.sidebar .sidebar-submenu{
  margin-top:0.25rem;
  display:none;
  max-height:11rem;
  overflow:auto;
  border-radius:0.25rem;
  border-top-left-radius:0px;
  border-top-right-radius:0px;
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
  text-align:left;
}
@media (min-width: 1024px){
  .sidebar .sidebar-submenu{
    display:block;
  }
}
.sidebar .sidebar-submenu span.count{
  float:right;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  font-size:0.75rem;
  line-height:1rem;
  font-weight:700;
  line-height:1;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
}
.sidebar .tag-list{
  margin-top:2.5rem;
  padding-top:0.625rem;
  padding-bottom:0.625rem;
  padding-left:1.25rem;
  padding-right:1.25rem;
  text-align:left;
}
@media (min-width: 1024px){
  .sidebar .tag-list{
    margin-top:0px;
  }
  .sidebar .tag-list{
    display:none;
  }
}

.pending.state, .executed.state, .in_progress.state, .incompleted.state, .failed.state, .overridden.state{
  border-radius:0.25rem;
  padding:0.25rem;
  font-size:1rem;
  line-height:1.5rem;
}

.status-led{
  margin-left:auto;
  margin-right:auto;
  display:flex;
  height:1rem;
  width:1rem;
}
.status-led .online, .status-led .offline, .status-led .current, .status-led .pending{
  position:relative;
  display:inline-flex;
  height:1rem;
  width:1rem;
  border-radius:9999px;
  border-width:4px;
}
.status-led .online{
  --tw-border-opacity:1;
  border-color:rgba(167, 243, 208, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(16, 185, 129, var(--tw-bg-opacity));
}
.status-led .offline{
  --tw-border-opacity:1;
  border-color:rgba(254, 202, 202, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(220, 38, 38, var(--tw-bg-opacity));
}
.status-led .pending{
  --tw-border-opacity:1;
  border-color:rgba(253, 230, 138, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(245, 158, 11, var(--tw-bg-opacity));
}
.status-led .current{
  --tw-border-opacity:1;
  border-color:rgba(167, 243, 208, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(16, 185, 129, var(--tw-bg-opacity));
}

.ui--tag-list {
  list-style-type: circle;
  list-style-type:none;
}
.ui--tag-list li{
  margin-left:0px;
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}
.ui--tag-list li:hover{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
}
.ui--tag-list li.selected{
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(96, 165, 250, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}
.ui--tag-list li .count{
  border-radius:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-size:0.875rem;
  line-height:1.25rem;
  --tw-text-opacity:1;
  color:rgba(0, 0, 0, var(--tw-text-opacity));
}

.ui--text{
  display:inline-block;
  width:16.25rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.ui--text input[type=text]{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui--text-area{
  display:inline-block;
  width:16.25rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.ui--text-area textarea{
  width:100%;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
}

.ui--toggable-key .hidden-key{
  cursor:pointer;
  border-bottom-width:1px;
  border-style:dotted;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  padding-bottom:0.25rem;
  font-size:0.75rem;
  line-height:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.ui--toggable-key .showed-key{
  cursor:pointer;
  border-bottom-width:1px;
  border-style:dotted;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  padding-bottom:0.125rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.ui--toggable-key .copy-clipboard{
  margin-left:0.5rem;
  cursor:pointer;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.ui--toggable-key .copy-clipboard:hover{
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.ui--toggle{
  position:relative;
  margin-right:0.5rem;
  display:inline-block;
  width:2.5rem;
  user-select:none;
  vertical-align:middle;
  transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
  transition-duration:300ms;
  transition-timing-function:cubic-bezier(0.4, 0, 1, 1);
}
.ui--toggle label{
  display:block;
  height:1.5rem;
  cursor:pointer;
  overflow:hidden;
  border-radius:9999px;
  --tw-bg-opacity:1;
  background-color:rgba(156, 163, 175, var(--tw-bg-opacity));
}
.ui--toggle input[type=checkbox]{
  position:absolute;
  display:block;
  height:1.5rem;
  width:1.5rem;
  cursor:pointer;
  appearance:none;
  border-radius:9999px;
  border-width:4px;
  --tw-border-opacity:1;
  border-color:rgba(156, 163, 175, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.ui--toggle input[type=checkbox]:checked{
  right:0px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
}
.ui--toggle input[type=checkbox]:checked:disabled{
  --tw-border-opacity:1;
  border-color:rgba(147, 197, 253, var(--tw-border-opacity));
}
.ui--toggle input[type=checkbox]:disabled{
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
}
.ui--toggle input[type=checkbox]:disabled + label{
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
}
.ui--toggle input[type=checkbox]:checked + label{
  --tw-bg-opacity:1;
  background-color:rgba(59, 130, 246, var(--tw-bg-opacity));
}
.ui--toggle input[type=checkbox]:checked:disabled + label{
  --tw-bg-opacity:1;
  background-color:rgba(147, 197, 253, var(--tw-bg-opacity));
}

@media (min-width: 1024px){
  .users--change-password{
    width:100%;
  }
  @media (min-width: 640px){
    .users--change-password{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .users--change-password{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .users--change-password{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .users--change-password{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .users--change-password{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .users--change-password{
      max-width:1536px;
    }
  }
}
.users--change-password .header{
  margin-top:1rem;
  display:flex;
  justify-content:space-between;
}
@media (min-width: 768px){
  .users--change-password .header{
    margin-top:0px;
  }
  .users--change-password .header{
    margin-left:0px;
  }
}
.users--change-password .main-configuration-module{
  display:flex;
}
.users--change-password .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.users--change-password .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .users--change-password .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.users--change-password .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.users--change-password .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.users--change-password .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.users--change-password .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.users--change-password .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.users--change-password .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.users--change-password .ui--select{
  position:relative;
  display:inline-block;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
}
.users--change-password .ui--select select{
  width:18rem;
  cursor:pointer;
  appearance:none;
  border-radius:0.25rem;
  padding-right:1rem;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
  outline:2px solid transparent;
  outline-offset:2px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.users--change-password [data-customTooltip] {
  cursor: pointer;
  position: relative;
}
.users--change-password [data-customTooltip]::after {
  background-color: #fff;
  color: #222;
  font-size: 14px;
  padding: 8px 12px;
  height: fit-content;
  width: fit-content;
  border-radius: 3px;
  position: absolute;
  text-align: center;
  bottom: 0px;
  left: 50%;
  content: attr(data-customTooltip);
  transform: translate(-50%, 110%) scale(0);
  transform-origin: top;
  transition: 0.14s;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.users--change-password [data-customTooltip]:hover:after {
  display: block;
  transform: translate(-50%, -10%) scale(1);
}
.users--change-password .icon-action{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.125rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.users--change-password .icon-action:hover{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}

.users--header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.users--header .title{
  display:flex;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 768px){
  .users--header .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .users--header .title{
    display:block;
  }
  .users--header .title{
    border-style:none;
  }
  .users--header .title{
    background-color:transparent;
  }
  .users--header .title{
    padding-left:0px;
    padding-right:0px;
  }
  .users--header .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .users--header .title{
    line-height:1;
  }
}

@media (min-width: 1024px){
  .users--profile{
    width:100%;
  }
  @media (min-width: 640px){
    .users--profile{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .users--profile{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .users--profile{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .users--profile{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .users--profile{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .users--profile{
      max-width:1536px;
    }
  }
}
.users--profile .main-configuration-module{
  display:flex;
}
.users--profile .field-badge-error{
  margin-left:0.25rem;
  border-radius:0.25rem;
  --tw-bg-opacity:1;
  background-color:rgba(254, 226, 226, var(--tw-bg-opacity));
  padding-top:0.25rem;
  padding-bottom:0.25rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  --tw-text-opacity:1;
  color:rgba(220, 38, 38, var(--tw-text-opacity));
}
.users--profile .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .users--profile .mobile-bar{
    display:none;
  }
}
.users--profile .mobile-bar .action-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.users--profile .mobile-bar .action-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.users--profile .mobile-bar .action-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.users--profile .mobile-bar .action-menu .mobile-button.cancel{
  --tw-bg-opacity:1;
  background-color:rgba(253, 230, 138, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(120, 53, 15, var(--tw-text-opacity));
}
.users--profile .configuration-modules-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.users--profile .configuration-modules-list .configuration-modules-group {
  margin-left: 0;
  margin-right: 0;
  display:flex;
  flex-direction:column;
  width: 100%;
}
@media (min-width: 1024px) {
  .users--profile .configuration-modules-list .configuration-modules-group {
    width: calc(50% - 1rem);
  }
}
.users--profile .input input{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.users--profile .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.users--profile .input textarea{
  width:20rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.users--profile .input textarea:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.users--profile .support-code{
  display:flex;
}
.users--profile .support-code .code-field{
  border-radius:0.5rem;
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
  padding:0.5rem;
  font-size:1.125rem;
  line-height:1.75rem;
  font-weight:700;
}
.users--profile .support-code .code-field .icon-action{
  margin-left:0.5rem;
  cursor:pointer;
  border-radius:0.125rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.users--profile .support-code .code-field .icon-action:hover{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}
.users--profile .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.users--profile .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.users--profile [data-customTooltip] {
  cursor: pointer;
  position: relative;
}
.users--profile [data-customTooltip]::after {
  background-color: #fff;
  color: #222;
  font-size: 14px;
  padding: 8px 12px;
  height: fit-content;
  width: fit-content;
  border-radius: 3px;
  position: absolute;
  text-align: center;
  bottom: 0px;
  left: 50%;
  content: attr(data-customTooltip);
  transform: translate(-50%, 110%) scale(0);
  transform-origin: top;
  transition: 0.14s;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.users--profile [data-customTooltip]:hover:after {
  display: block;
  transform: translate(-50%, -10%) scale(1);
}

@media (min-width: 1024px){
  .workstations--edit{
    width:100%;
  }
  @media (min-width: 640px){
    .workstations--edit{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .workstations--edit{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .workstations--edit{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .workstations--edit{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .workstations--edit{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .workstations--edit{
      max-width:1536px;
    }
  }
}
.workstations--edit .header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.workstations--edit .main-configuration-module{
  display:flex;
}
.workstations--edit .input input{
  width:24rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.workstations--edit .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.workstations--edit .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.workstations--edit .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.workstations--header{
  margin-top:1.5rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .workstations--header{
    margin-left:0px;
    margin-right:0px;
  }
  .workstations--header{
    margin-top:0px;
  }
  .workstations--header{
    padding-left:1rem;
    padding-right:1rem;
  }
}

@media (min-width: 1280px){
  .workstations--header{
    padding-left:0px;
    padding-right:0px;
  }
}
.workstations--header.workstations--header-new{
  margin-top:0px;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
}
@media (min-width: 1024px){
  .workstations--header.workstations--header-new{
    border-style:none;
  }
  .workstations--header.workstations--header-new{
    background-color:transparent;
  }
  .workstations--header.workstations--header-new{
    padding-left:1rem;
    padding-right:1rem;
  }
  .workstations--header.workstations--header-new{
    padding-top:0px;
    padding-bottom:0px;
  }
}
@media (min-width: 1280px){
  .workstations--header.workstations--header-new{
    padding-left:0px;
    padding-right:0px;
  }
}
.workstations--header .title{
  display:flex;
  justify-content:space-between;
  background-color:transparent;
  padding-left:0px;
  padding-right:0px;
  font-size:1rem;
  line-height:1.5rem;
  font-weight:600;
  line-height:44px;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
@media (min-width: 1024px){
  .workstations--header .title{
    margin-top:0px;
    margin-bottom:0px;
  }
  .workstations--header .title{
    display:block;
  }
  .workstations--header .title{
    padding-left:0px;
    padding-right:0px;
  }
  .workstations--header .title{
    font-size:1.5rem;
    line-height:2rem;
  }
  .workstations--header .title{
    line-height:1;
  }
}
.workstations--header .workstation--name {
  width: calc(100% - 2rem);
  margin-left:0.5rem;
  font-size:1.125rem;
  line-height:1.75rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(75, 85, 99, var(--tw-text-opacity));
  overflow-wrap: anywhere;
}

.workstations--index .table-wrapper{
  display:none;
}

@media (min-width: 1024px){
  .workstations--index .table-wrapper{
    display:block;
  }
  .workstations--index .list-wrapper{
    display:none;
  }
}
.workstations--index .list-wrapper .workstation-item:first-child{
  margin-top:0px;
}
.workstations--index .list-wrapper .workstation-item{
  margin:0.625rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.workstations--index .list-wrapper .workstation-item .status-led-w{
  margin-right:1.25rem;
  align-self:center;
}
.workstations--index .list-wrapper .workstation-item .name a .workstation-name{
  overflow:scroll;
}
.workstations--index .list-wrapper .workstation-item .name > a, .workstations--index .list-wrapper .description{
  display:flex;
  align-content:center;
  justify-content:flex-start;
  padding:1.25rem;
}
.workstations--index .list-wrapper .workstation-item .status{
  display:flex;
  align-content:center;
  justify-content:center;
}
.workstations--index .list-wrapper .workstation-item .description{
  display:flex;
  align-content:center;
  justify-content:space-between;
  border-top-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
}
.workstations--index tbody .overable, .workstations--index tbody .not-overable{
  height:3rem;
}
.workstations--index tbody tr.selected td .overable{
  --tw-bg-opacity:1;
  background-color:rgba(243, 244, 246, var(--tw-bg-opacity));
}

@media (min-width: 1024px){
  .workstations--new{
    width:100%;
  }
  @media (min-width: 640px){
    .workstations--new{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .workstations--new{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .workstations--new{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .workstations--new{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .workstations--new{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .workstations--new{
      max-width:1536px;
    }
  }
}
.workstations--new .main-configuration-module{
  display:flex;
}
.workstations--new .header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.workstations--new .input input{
  width:24rem;
  border-radius:0.25rem;
  border-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(209, 213, 219, var(--tw-border-opacity));
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.workstations--new .input input:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.workstations--new .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.workstations--new .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

@media (min-width: 1024px){
  .workstations--show{
    width:100%;
  }
  @media (min-width: 640px){
    .workstations--show{
      max-width:640px;
    }
  }
  @media (min-width: 768px){
    .workstations--show{
      max-width:768px;
    }
  }
  @media (min-width: 1024px){
    .workstations--show{
      max-width:1024px;
    }
  }
  @media (min-width: 1152px){
    .workstations--show{
      max-width:1152px;
    }
  }
  @media (min-width: 1280px){
    .workstations--show{
      max-width:1280px;
    }
  }
  @media (min-width: 1536px){
    .workstations--show{
      max-width:1536px;
    }
  }
}
.workstations--show .header{
  flex-grow:1;
  font-size:1.5rem;
  line-height:2rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}
.workstations--show .mobile-bar{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top-width:1px;
  border-bottom-width:1px;
  --tw-border-opacity:1;
  border-color:rgba(243, 244, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
@media (min-width: 1152px){
  .workstations--show .mobile-bar{
    display:none;
  }
}
.workstations--show .mobile-bar .action-menu, .workstations--show .mobile-bar .sub-menu{
  display:flex;
  justify-content:flex-end;
  --tw-bg-opacity:1;
  background-color:rgba(255, 255, 255, var(--tw-bg-opacity));
}
.workstations--show .mobile-bar .action-menu .mobile-button, .workstations--show .mobile-bar .sub-menu .mobile-button{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.workstations--show .mobile-bar .action-menu .mobile-button.primary, .workstations--show .mobile-bar .sub-menu .mobile-button.primary{
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}
.workstations--show .mobile-bar .action-menu .mobile-button.destroy, .workstations--show .mobile-bar .sub-menu .mobile-button.destroy{
  --tw-bg-opacity:1;
  background-color:rgba(254, 242, 242, var(--tw-bg-opacity));
  --tw-text-opacity:1;
  color:rgba(239, 68, 68, var(--tw-text-opacity));
}
.workstations--show .mobile-bar .action-menu .mobile-button.backbutton, .workstations--show .mobile-bar .sub-menu .mobile-button.backbutton{
  padding-left:1rem;
  padding-right:1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  --tw-text-opacity:1;
  color:rgba(156, 163, 175, var(--tw-text-opacity));
}
.workstations--show .button-bar{
  display:none;
}
@media (min-width: 1152px){
  .workstations--show .button-bar{
    display:flex;
  }
}
.workstations--show .actions{
  position:sticky;
  bottom:0px;
  border-top-width:2px;
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
  --tw-bg-opacity:1;
  background-color:rgba(239, 246, 255, var(--tw-bg-opacity));
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:1.25rem;
  padding-bottom:1.25rem;
  text-align:right;
}
.workstations--show .actions a.cancel{
  margin-right:1rem;
  --tw-text-opacity:1;
  color:rgba(59, 130, 246, var(--tw-text-opacity));
}

.focus-within\:text-gray-700:focus-within{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

.hover\:cursor-pointer:hover{
  cursor:pointer;
}

.hover\:border-gray-400:hover{
  --tw-border-opacity:1;
  border-color:rgba(156, 163, 175, var(--tw-border-opacity));
}

.hover\:bg-gray-700:hover{
  --tw-bg-opacity:1;
  background-color:rgba(55, 65, 81, var(--tw-bg-opacity));
}

.hover\:bg-red-700:hover{
  --tw-bg-opacity:1;
  background-color:rgba(185, 28, 28, var(--tw-bg-opacity));
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity:1;
  background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
}

.hover\:bg-blue-500:hover{
  --tw-bg-opacity:1;
  background-color:rgba(59, 130, 246, var(--tw-bg-opacity));
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity:1;
  background-color:rgba(249, 250, 251, var(--tw-bg-opacity));
}

.hover\:bg-gray-600:hover{
  --tw-bg-opacity:1;
  background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover{
  --tw-bg-opacity:1;
  background-color:rgba(229, 231, 235, var(--tw-bg-opacity));
}

.hover\:bg-blue-800:hover{
  --tw-bg-opacity:1;
  background-color:rgba(30, 64, 175, var(--tw-bg-opacity));
}

.hover\:bg-gray-800:hover{
  --tw-bg-opacity:1;
  background-color:rgba(31, 41, 55, var(--tw-bg-opacity));
}

.hover\:text-gray-500:hover{
  --tw-text-opacity:1;
  color:rgba(107, 114, 128, var(--tw-text-opacity));
}

.hover\:text-gray-700:hover{
  --tw-text-opacity:1;
  color:rgba(55, 65, 81, var(--tw-text-opacity));
}

.hover\:text-blue-700:hover{
  --tw-text-opacity:1;
  color:rgba(29, 78, 216, var(--tw-text-opacity));
}

.hover\:text-blue-600:hover{
  --tw-text-opacity:1;
  color:rgba(37, 99, 235, var(--tw-text-opacity));
}

.hover\:text-gray-900:hover{
  --tw-text-opacity:1;
  color:rgba(17, 24, 39, var(--tw-text-opacity));
}

.hover\:text-blue-800:hover{
  --tw-text-opacity:1;
  color:rgba(30, 64, 175, var(--tw-text-opacity));
}

.hover\:text-white:hover{
  --tw-text-opacity:1;
  color:rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:underline:hover{
  text-decoration:underline;
}

.focus\:border-blue-500:focus{
  --tw-border-opacity:1;
  border-color:rgba(59, 130, 246, var(--tw-border-opacity));
}

.focus\:outline-none:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}

.focus\:ring-0:focus{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-4:focus{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(59, 130, 246, var(--tw-ring-opacity));
}

.focus\:ring-indigo-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(99, 102, 241, var(--tw-ring-opacity));
}

.focus\:ring-blue-300:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgba(147, 197, 253, var(--tw-ring-opacity));
}

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width:2px;
}

@media (prefers-color-scheme: dark){
  .dark\:border-gray-500{
    --tw-border-opacity:1;
    border-color:rgba(107, 114, 128, var(--tw-border-opacity));
  }
  .dark\:bg-gray-700{
    --tw-bg-opacity:1;
    background-color:rgba(55, 65, 81, var(--tw-bg-opacity));
  }
  .dark\:bg-gray-600{
    --tw-bg-opacity:1;
    background-color:rgba(75, 85, 99, var(--tw-bg-opacity));
  }
  .dark\:bg-blue-600{
    --tw-bg-opacity:1;
    background-color:rgba(37, 99, 235, var(--tw-bg-opacity));
  }
  .dark\:text-white{
    --tw-text-opacity:1;
    color:rgba(255, 255, 255, var(--tw-text-opacity));
  }
  .dark\:placeholder-gray-400::placeholder{
    --tw-placeholder-opacity:1;
    color:rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }
  .dark\:hover\:bg-gray-800:hover{
    --tw-bg-opacity:1;
    background-color:rgba(31, 41, 55, var(--tw-bg-opacity));
  }
  .dark\:hover\:bg-blue-700:hover{
    --tw-bg-opacity:1;
    background-color:rgba(29, 78, 216, var(--tw-bg-opacity));
  }
  .dark\:hover\:text-white:hover{
    --tw-text-opacity:1;
    color:rgba(255, 255, 255, var(--tw-text-opacity));
  }
  .dark\:focus\:ring-blue-800:focus{
    --tw-ring-opacity:1;
    --tw-ring-color:rgba(30, 64, 175, var(--tw-ring-opacity));
  }
}

@media (min-width: 640px){
  .sm\:my-8{
    margin-top:2rem;
    margin-bottom:2rem;
  }
  .sm\:ml-4{
    margin-left:1rem;
  }
  .sm\:mt-0{
    margin-top:0px;
  }
  .sm\:mt-8{
    margin-top:2rem;
  }
  .sm\:flex{
    display:flex;
  }
  .sm\:w-auto{
    width:auto;
  }
  .sm\:w-full{
    width:100%;
  }
  .sm\:max-w-xl{
    max-width:36rem;
  }
  .sm\:max-w-full{
    max-width:100%;
  }
  .sm\:translate-y-0{
    --tw-translate-y:0px;
    transform:var(--tw-transform);
  }
  .sm\:translate-x-2{
    --tw-translate-x:0.5rem;
    transform:var(--tw-transform);
  }
  .sm\:translate-x-0{
    --tw-translate-x:0px;
    transform:var(--tw-transform);
  }
  .sm\:grid-cols-2{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row-reverse{
    flex-direction:row-reverse;
  }
  .sm\:items-start{
    align-items:flex-start;
  }
  .sm\:items-end{
    align-items:flex-end;
  }
  .sm\:items-center{
    align-items:center;
  }
  .sm\:justify-center{
    justify-content:center;
  }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse:0;
    margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom:calc(0px * var(--tw-space-y-reverse));
  }
  .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse:0;
    margin-right:calc(1rem * var(--tw-space-x-reverse));
    margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:p-6{
    padding:1.5rem;
  }
  .sm\:p-0{
    padding:0px;
  }
  .sm\:px-6{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
  .sm\:px-0{
    padding-left:0px;
    padding-right:0px;
  }
  .sm\:px-2{
    padding-left:0.5rem;
    padding-right:0.5rem;
  }
  .sm\:py-1{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
  }
  .sm\:pb-6{
    padding-bottom:1.5rem;
  }
  .sm\:text-justify{
    text-align:justify;
  }
}

@media (min-width: 768px){
  .md\:inset-0{
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
  }
  .md\:mx-0{
    margin-left:0px;
    margin-right:0px;
  }
  .md\:mb-3{
    margin-bottom:0.75rem;
  }
  .md\:mt-1{
    margin-top:0.25rem;
  }
  .md\:ml-0{
    margin-left:0px;
  }
  .md\:ml-5{
    margin-left:1.25rem;
  }
  .md\:mb-4{
    margin-bottom:1rem;
  }
  .md\:inline{
    display:inline;
  }
  .md\:flex{
    display:flex;
  }
  .md\:hidden{
    display:none;
  }
  .md\:h-auto{
    height:auto;
  }
  .md\:h-full{
    height:100%;
  }
  .md\:px-2\.5{
    padding-left:0.625rem;
    padding-right:0.625rem;
  }
  .md\:py-1\.5{
    padding-top:0.375rem;
    padding-bottom:0.375rem;
  }
  .md\:px-2{
    padding-left:0.5rem;
    padding-right:0.5rem;
  }
  .md\:py-1{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
  }
  .md\:pt-0{
    padding-top:0px;
  }
  .md\:pl-5{
    padding-left:1.25rem;
  }
  .md\:text-base{
    font-size:1rem;
    line-height:1.5rem;
  }
}

@media (min-width: 1024px){
  .lg\:absolute{
    position:absolute;
  }
  .lg\:mx-auto{
    margin-left:auto;
    margin-right:auto;
  }
  .lg\:my-0{
    margin-top:0px;
    margin-bottom:0px;
  }
  .lg\:ml-0{
    margin-left:0px;
  }
  .lg\:mt-1{
    margin-top:0.25rem;
  }
  .lg\:block{
    display:block;
  }
  .lg\:table-cell{
    display:table-cell;
  }
  .lg\:hidden{
    display:none;
  }
  .lg\:w-48{
    width:12rem;
  }
  .lg\:flex-none{
    flex:none;
  }
  .lg\:grid-cols-3{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
  .lg\:px-8{
    padding-left:2rem;
    padding-right:2rem;
  }
  .lg\:px-0{
    padding-left:0px;
    padding-right:0px;
  }
  .lg\:py-1{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
  }
  .lg\:text-\[50px\]{
    font-size:50px;
  }
  .lg\:text-lg{
    font-size:1.125rem;
    line-height:1.75rem;
  }
  .lg\:text-2xl{
    font-size:1.5rem;
    line-height:2rem;
  }
}

@media (min-width: 1152px){
  .lx\:mx-0{
    margin-left:0px;
    margin-right:0px;
  }
  .lx\:inline{
    display:inline;
  }
  .lx\:flex{
    display:flex;
  }
  .lx\:hidden{
    display:none;
  }
  .lx\:justify-end{
    justify-content:flex-end;
  }
}

@media (min-width: 1280px){
  .xl\:table-cell{
    display:table-cell;
  }
  .xl\:w-1\/2{
    width:50%;
  }
  .xl\:pb-8{
    padding-bottom:2rem;
  }
}

@media (min-width: 1536px){
  .\32xl\:table-cell{
    display:table-cell;
  }
}

/*# sourceMappingURL=/assets/application-4a3b7003.css.map */