.fade-enter-active, .fade-leave-active {
  transition: opacity .28s;
}

.fade-enter, .fade-leave-active {
  opacity: 0;
}

.breadcrumb-enter-active, .breadcrumb-leave-active {
  transition: all .5s;
}

.breadcrumb-enter, .breadcrumb-leave-active {
  opacity: 0;
  transform: translateX(20px);
}

.breadcrumb-move {
  transition: all .5s;
}

.breadcrumb-leave-active {
  position: absolute;
}

:root {
  --background-color: #f2f3f5;
  --text-color: #333;
  --primary-color: #409eff;
  --secondary-color: #555;
  --main-view-bg-color: #f9f9fc;
  --glass: #ffffffa6;
  --glass-strong: #f5f5f5d9;
  --border-light: #00000014;
  --card-bg: #fff9;
  --font-ui: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-code: "Courier New", monospace;
  --success: #2e7d32;
  --error: #c62828;
  --primary: #1a1a1a;
  --secondary: #555;
  --bg-start: #eef2f5;
  --bg-end: #dbe4ed;
}

html.dark {
  --background-color: #050505;
  --background-gradient: linear-gradient(135deg, #111 0%, #050505 100%);
  --text-color: #e0e0e0;
  --primary-color: #00e676;
  --primary-dim: #00a854;
  --main-view-bg-color: transparent;
  --glass: #000000b3;
  --glass-strong: #141414e6;
  --border-light: #ffffff1a;
  --card-bg: #1e1e1e99;
  --primary: #fff;
  --secondary: #a0a0a0;
  --glow-text: 0 0 10px #00e67666;
  --glow-component: drop-shadow(0 0 5px #00e67666);
  --bg-start: #1a1a1a;
  --bg-end: #0d0d0d;
}

body {
  background: var(--background-gradient, var(--background-color));
  color: var(--text-color);
  font-family: var(--font-ui);
  margin: 0;
  transition: background-color .3s, color .3s;
}

html, body, #app {
  width: 100%;
  height: 100%;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}

html {
  box-sizing: border-box;
}

html ::-webkit-scrollbar {
  background-color: none;
  width: 6px;
  height: 6px;
}

html ::-webkit-scrollbar-track {
  background-color: none;
}

html ::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

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

div:focus, a:focus, a:active {
  outline: none;
}

a, a:focus, a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.clearfix:after {
  visibility: hidden;
  content: " ";
  clear: both;
  height: 0;
  font-size: 0;
  display: block;
}

.app-main {
  min-height: 100%;
}

.app-container {
  padding: 20px;
}

.n-message-container.n-message-container--top {
  top: 35px;
}

.not-found-container {
  --nf-bg-start: #f3f6f9;
  --nf-bg-end: #dde4ed;
  --nf-text-main: #333;
  --nf-text-sub: #666;
  --nf-content-bg: #fff6;
  --nf-content-border: #fff9;
  --nf-error-code: #c62828;
  --nf-terminal-bg: #0000000d;
  --nf-terminal-border: #666;
  --nf-log-line: #555;
  --nf-btn-border: #333;
  --nf-btn-text: #333;
  --nf-btn-hover-bg: #333;
  --nf-btn-hover-text: #fff;
  --nf-grid-color: #00000008;
  --nf-shadow: #0000000d;
}
html.dark .not-found-container {
  --nf-bg-start: #1a1a1a;
  --nf-bg-end: #0d0d0d;
  --nf-text-main: #e0e0e0;
  --nf-text-sub: #aaa;
  --nf-content-bg: #0006;
  --nf-content-border: #ffffff1a;
  --nf-error-code: #ff5252;
  --nf-terminal-bg: #ffffff0d;
  --nf-terminal-border: #888;
  --nf-log-line: #ccc;
  --nf-btn-border: #e0e0e0;
  --nf-btn-text: #e0e0e0;
  --nf-btn-hover-bg: #e0e0e0;
  --nf-btn-hover-text: #121212;
  --nf-grid-color: #ffffff08;
  --nf-shadow: #00000080;
}


.bg-body[data-v-4fde5d92] {
  background: var(--background-gradient, var(--background-color));
  width: 100vw;
  height: 100vh;
  font-family: var(--font-ui);
  color: var(--text-color);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 30px;
  display: flex;
  overflow: hidden;
}
.not-found-container[data-v-4fde5d92] {
  background: radial-gradient(circle at 50% 50%, var(--nf-bg-start) 0%, var(--nf-bg-end) 100%);
  width: 100vw;
  height: 100%;
  color: var(--nf-text-main);
  justify-content: center;
  align-items: center;
  font-family: Courier New, monospace;
  display: flex;
  position: relative;
  overflow: hidden;
}
.content[data-v-4fde5d92] {
  z-index: 2;
  text-align: center;
  background: var(--nf-content-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--nf-content-border);
  box-shadow: 0 10px 30px var(--nf-shadow);
  border-radius: 4px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
}
.error-code[data-v-4fde5d92] {
  color: var(--nf-error-code);
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  position: relative;
}
.glitch[data-v-4fde5d92] {
  position: relative;
}
.glitch[data-v-4fde5d92]:before, .glitch[data-v-4fde5d92]:after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.glitch[data-v-4fde5d92]:before {
  text-shadow: -1px 0 #0ff;
  clip: rect(24px, 550px, 90px, 0);
  animation: 3s linear infinite alternate-reverse glitch-anim-2-4fde5d92;
  left: 2px;
}
.glitch[data-v-4fde5d92]:after {
  text-shadow: -1px 0 #f0f;
  clip: rect(85px, 550px, 140px, 0);
  animation: 2.5s linear infinite alternate-reverse glitch-anim-4fde5d92;
  left: -2px;
}
@keyframes glitch-anim-4fde5d92 {
0% {
    clip: rect(11px, 9999px, 81px, 0);
}
20% {
    clip: rect(96px, 9999px, 2px, 0);
}
40% {
    clip: rect(25px, 9999px, 94px, 0);
}
60% {
    clip: rect(61px, 9999px, 34px, 0);
}
80% {
    clip: rect(5px, 9999px, 66px, 0);
}
100% {
    clip: rect(84px, 9999px, 11px, 0);
}
}
@keyframes glitch-anim-2-4fde5d92 {
0% {
    clip: rect(65px, 9999px, 100px, 0);
}
20% {
    clip: rect(32px, 9999px, 11px, 0);
}
40% {
    clip: rect(8px, 9999px, 69px, 0);
}
60% {
    clip: rect(54px, 9999px, 24px, 0);
}
80% {
    clip: rect(92px, 9999px, 4px, 0);
}
100% {
    clip: rect(21px, 9999px, 78px, 0);
}
}
.error-title[data-v-4fde5d92] {
  letter-spacing: 4px;
  color: var(--nf-text-main);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
.error-desc[data-v-4fde5d92] {
  color: var(--nf-text-sub);
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}
.terminal-logs[data-v-4fde5d92] {
  text-align: left;
  background: var(--nf-terminal-bg);
  border-left: 2px solid var(--nf-terminal-border);
  margin-bottom: 30px;
  padding: 15px;
  font-size: 11px;
}
.log-line[data-v-4fde5d92] {
  color: var(--nf-log-line);
  margin-bottom: 4px;
}
.status-ok[data-v-4fde5d92] {
  color: #2e7d32;
  font-weight: bold;
}
.status-fail[data-v-4fde5d92] {
  color: #c62828;
  font-weight: bold;
}
.btn-return[data-v-4fde5d92] {
  border: 1px solid var(--nf-btn-border);
  color: var(--nf-btn-text);
  cursor: pointer;
  background: none;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  transition: all .3s;
  display: inline-flex;
}
.btn-return[data-v-4fde5d92]:hover {
  background: var(--nf-btn-hover-bg);
  color: var(--nf-btn-hover-text);
}
.deco-grid[data-v-4fde5d92] {
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--nf-grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--nf-grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#000 40%, #0000 100%);
}


.bg-body[data-v-f30d5b7e] {
  background: var(--background-gradient, var(--background-color));
  width: 100vw;
  height: 100vh;
  font-family: var(--font-ui);
  color: var(--text-color);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 30px;
  display: flex;
  overflow: hidden;
}
.sys-window[data-v-f30d5b7e] {
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  grid-template-rows: 1fr;
  grid-template-columns: 80px 1fr;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
  overflow: hidden;
}
.left-sidebar[data-v-f30d5b7e] {
  border-right: 1px solid var(--border-light);
  z-index: 2;
  background: #f1f1f1;
  border-radius: 156px;
  flex-direction: column;
  grid-column: 1;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 90%;
  margin-top: 40px;
  margin-left: 12px;
  display: flex;
}
.sidebar-item[data-v-f30d5b7e] {
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px;
  transition: all .3s;
  display: flex;
}
.sidebar-item.active[data-v-f30d5b7e] {
  color: #000;
  font-weight: bold;
}
.sidebar-icon[data-v-f30d5b7e] {
  border-radius: 4px;
  width: 24px;
  height: 24px;
  transition: all .3s;
}
.sidebar-icon.selected[data-v-f30d5b7e] {
  background: #666;
}
.sidebar-label[data-v-f30d5b7e] {
  font-size: 14px;
}
.lang-icon[data-v-f30d5b7e] {
  color: #666;
  background: #e0e0e0;
  border: 1px solid #ccc;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  display: flex;
}
.content-wrapper[data-v-f30d5b7e] {
  z-index: 2;
  flex-direction: column;
  grid-column: 2;
  height: 100%;
  display: flex;
  position: relative;
  overflow-y: auto;
}
.fade-enter-active[data-v-f30d5b7e], .fade-leave-active[data-v-f30d5b7e] {
  transition: opacity .3s;
}
.fade-enter-from[data-v-f30d5b7e], .fade-leave-to[data-v-f30d5b7e] {
  opacity: 0;
}


.bg-body[data-v-08d0f4c6] {
  width: 100vw;
  height: 100vh;
  padding-top: 30px;
}
.back-btn[data-v-08d0f4c6] {
  margin-top: 10px;
  margin-left: 10px;
  position: absolute;
}


.browser {
  --tab-bar-bg: #dee1e6;
  --tab-active-bg: #fff;
  --tab-hover-bg: #edeff2;
  --tab-text-active: #3c4043;
  --tab-text-normal: #5f6368;
  --tab-separator: #aeb1b5;
}
html.dark .browser {
  --tab-bar-bg: #000;
  --tab-active-bg: #323639;
  --tab-hover-bg: #202124;
  --tab-text-active: #e8eaed;
  --tab-text-normal: #9aa0a6;
  --tab-separator: #4a4c50;
}


.tabbar[data-v-6b644552] {
  background-color: var(--tab-bar-bg);
  user-select: none;
  width: 100%;
  height: 40px;
  color: var(--text-color);
  align-items: flex-end;
  padding-top: 8px;
  transition: background-color .2s;
  display: flex;
  position: relative;
}
.use-transition .spacer[data-v-6b644552] {
  transition: width .2s ease-in-out;
}
.spacer[data-v-6b644552] {
  width: 0;
}
.spacer.active[data-v-6b644552] {
  width: 200px;
}
.tab-item[data-v-6b644552] {
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 200px;
  height: 32px;
  color: var(--tab-text-normal);
  border-right: none;
  border-radius: 8px 8px 0 0;
  margin-right: -1px;
  padding: 0 30px;
  font-size: 12px;
  line-height: 32px;
  transition: background-color .2s, color .2s;
  position: relative;
  overflow: visible;
}
.tab-item[data-v-6b644552]:after {
  content: "";
  background-color: var(--tab-separator);
  opacity: 1;
  width: 1px;
  height: 50%;
  transition: opacity .2s;
  position: absolute;
  top: 25%;
  right: 0;
}
.tab-item.active[data-v-6b644552]:after, .tab-item[data-v-6b644552]:hover:after {
  opacity: 0;
}
.tab-item.active[data-v-6b644552] {
  background-color: var(--tab-active-bg);
  color: var(--tab-text-active);
  z-index: 10;
  box-shadow: 0 -1px 4px #0000000d;
}
.tab-item[data-v-6b644552]:not(.active):hover {
  background-color: var(--tab-hover-bg);
}
.tab-item.dragging[data-v-6b644552] {
  background-color: var(--tab-active-bg);
  z-index: 20;
  border-radius: 8px;
  position: absolute;
  box-shadow: 0 4px 10px #0003;
}
.close-btn[data-v-6b644552] {
  opacity: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
  transition: opacity .2s, background-color .2s;
  display: flex;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.tab-item:hover .close-btn[data-v-6b644552], .tab-item.active .close-btn[data-v-6b644552] {
  opacity: 1;
}
.close-btn[data-v-6b644552]:hover {
  background-color: var(--border-light);
  color: var(--error);
}
.add-btn[data-v-6b644552] {
  cursor: pointer;
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: var(--text-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 5px 4px;
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: background-color .2s;
  display: flex;
}
.add-btn[data-v-6b644552]:hover {
  background-color: var(--border-light);
}
.search-bar[data-v-6b644552] {
  background-color: var(--tab-active-bg);
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  height: 44px;
  padding: 0 10px;
  display: flex;
  box-shadow: 0 2px 4px #00000005;
}
.search-input[data-v-6b644552] {
  background-color: var(--border-light);
  width: 100%;
  height: 32px;
  color: var(--text-color);
  border: 1px solid #0000;
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
  font-size: 13px;
  transition: background-color .2s, border-color .2s, box-shadow .2s;
}
.search-input[data-v-6b644552]:focus {
  background-color: var(--bg-start);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px #409eff33;
}


.print-page[data-v-316eb79c] {
  flex-direction: column;
  height: 100%;
  display: flex;
}
.tool-header[data-v-316eb79c] {
  border-bottom: 1px solid var(--border-light);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}
.header-left[data-v-316eb79c] {
  align-items: center;
  gap: 15px;
  display: flex;
}
.tool-title[data-v-316eb79c] {
  font-family: var(--font-code);
  font-size: 18px;
  font-weight: bold;
}
.content-container[data-v-316eb79c] {
  flex: 1;
  gap: 20px;
  min-height: 0;
  display: flex;
}
.content-column[data-v-316eb79c] {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}
.content-card[data-v-316eb79c] {
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.preview-area[data-v-316eb79c] {
  background: #00000005;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 20px;
  display: flex;
}
.preview-box[data-v-316eb79c] {
  background: #ff4d4f;
  border-radius: 4px;
  width: 50px;
  height: 50px;
}


.window-title[data-v-e227a812] {
  -webkit-app-region: drag;
  z-index: 99999;
  background-color: #0000;
  align-items: center;
  width: 100%;
  height: 32px;
  line-height: 32px;
  display: flex;
  position: fixed;
  top: 0;
}
.mac-traffic-lights-placeholder[data-v-e227a812] {
  -webkit-app-region: drag;
  width: 70px;
  height: 100%;
}
.icon-logo[data-v-e227a812] {
  vertical-align: -.15em;
  fill: currentColor;
  width: 1em;
  height: 1em;
  overflow: hidden;
}
.title[data-v-e227a812] {
  text-align: center;
  color: var(--text-color);
  font-family: var(--font-code, "Courier New", monospace);
  letter-spacing: 2px;
  flex: 1;
  font-size: 12px;
  font-weight: bold;
}
.logo[data-v-e227a812] {
  color: var(--text-color);
  margin: 0 10px;
}
.controls-container[data-v-e227a812] {
  text-align: center;
  z-index: 3000;
  -webkit-app-region: no-drag;
  flex-grow: 0;
  flex-shrink: 0;
  width: 138px;
  height: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
}
.windows-icon-bg[data-v-e227a812] {
  -webkit-app-region: no-drag;
  width: 46px;
  height: 100%;
  color: var(--text-color);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background-color .2s;
  display: flex;
}
.icon-size[data-v-e227a812] {
  fill: currentColor;
  width: 12px;
  height: 12px;
}
.windows-icon-bg[data-v-e227a812]:hover {
  background-color: var(--border-light);
}
.close-icon[data-v-e227a812]:hover {
  color: #fff;
  background-color: #c42b1c;
}


body {
  background-color: var(--background-color);
}
.screen-share-modal {
  z-index: 9999;
  cursor: none;
  background-color: #000000f2;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}
.modal-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}
.screen-share-video {
  object-fit: contain;
  background-color: #000;
  width: 100%;
  height: 100%;
}
.screen-share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.screen-share-video {
  pointer-events: none;
}


@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-ease:initial;--un-text-opacity:100%;}}@property --un-text-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}@property --un-outline-style{syntax:"*";inherits:false;initial-value:solid;}@property --un-inset-ring-color{syntax:"*";inherits:false;}@property --un-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-inset-shadow-color{syntax:"*";inherits:false;}@property --un-ring-color{syntax:"*";inherits:false;}@property --un-ring-inset{syntax:"*";inherits:false;}@property --un-ring-offset-color{syntax:"*";inherits:false;}@property --un-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0px;}@property --un-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-shadow-color{syntax:"*";inherits:false;}@property --un-ease{syntax:"*";inherits:false;}:root, :host {
--font-sans: 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";
--font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
--default-font-family: var(--font-sans);
--default-monoFont-family: var(--font-mono);
--spacing: 0.25rem;
--default-transition-timingFunction: cubic-bezier(0.4, 0, 0.2, 1);
--default-transition-duration: 150ms;
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--ease-DEFAULT: cubic-bezier(0.4, 0, 0.2, 1);
--text-lg-fontSize: 1.125rem;
--text-lg-lineHeight: 1.75rem;
}/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: var(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: var(--default-font-featureSettings, normal); /* 5 */
  font-variation-settings: var(--default-font-variationSettings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  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)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

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

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

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;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: var(
    --default-monoFont-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: var(--default-monoFont-featureSettings, normal); /* 2 */
  font-variation-settings: var(--default-monoFont-variationSettings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  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;
}

/*
  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)
  3. Remove gaps between table borders by default.
*/

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

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

progress {
  vertical-align: baseline;
}

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

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

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;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

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

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

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

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

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

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden~='until-found'])) {
  display: none !important;
}.text-lg{font-size:var(--text-lg-fontSize);line-height:var(--un-leading, var(--text-lg-lineHeight));}[color~="\#000"]{color:color-mix(in oklab, #000 var(--un-text-opacity), transparent) /* #000 */;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.my{margin-block:calc(var(--spacing) * 4);}.px{padding-inline:calc(var(--spacing) * 4);}.outline{outline-style:var(--un-outline-style);outline-width:1px;}.border{border-width:1px;}.flex{display:flex;}.inline-flex{display:inline-flex;}.flex-shrink{flex-shrink:1;}.flex-grow{flex-grow:1;}.flex-wrap{flex-wrap:wrap;}.grid{display:grid;}[cols~="\34 "]{grid-template-columns:repeat(4,minmax(0,1fr));}[size~="\32 8"]{width:calc(var(--spacing) * 28);height:calc(var(--spacing) * 28);}.h3{height:calc(var(--spacing) * 3);}.block,[block=""]{display:block;}.hidden{display:none;}.visible{visibility:visible;}.uppercase{text-transform:uppercase;}.shadow{--un-shadow:0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-inset-shadow), var(--un-inset-ring-shadow), var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.transform{transform:var(--un-rotate-x) var(--un-rotate-y) var(--un-rotate-z) var(--un-skew-x) var(--un-skew-y);}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,--un-gradient-from,--un-gradient-via,--un-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--un-ease, var(--default-transition-timingFunction));transition-duration:var(--un-duration, var(--default-transition-duration));}.ease{--un-ease:var(--ease-DEFAULT);transition-timing-function:var(--ease-DEFAULT);}.ease-in-out{--un-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out);}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.backdrop-filter{-webkit-backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);}@keyframes __un_qm{0%{box-shadow:inset 4px 4px #ff1e90, inset -4px -4px #ff1e90}100%{box-shadow:inset 8px 8px #3399ff, inset -8px -8px #3399ff}} .\?{animation:__un_qm 0.5s ease-in-out alternate infinite;}@keyframes __un_qm{0%{box-shadow:inset 4px 4px #ff1e90, inset -4px -4px #ff1e90}100%{box-shadow:inset 8px 8px #3399ff, inset -8px -8px #3399ff}} [\?=""]{animation:__un_qm 0.5s ease-in-out alternate infinite;}@keyframes __un_qm{0%{box-shadow:inset 4px 4px #ff1e90, inset -4px -4px #ff1e90}100%{box-shadow:inset 8px 8px #3399ff, inset -8px -8px #3399ff}} [placeholder~="\?"]::placeholder{animation:__un_qm 0.5s ease-in-out alternate infinite;}

