@layer primevue, tailwind-utilities;

@layer tailwind-utilities {
  .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: 1280px){

    .container{
      max-width: 1280px;
    }
  }
  @media (min-width: 1536px){

    .container{
      max-width: 1536px;
    }
  }
  @media (min-width: 1800px){

    .container{
      max-width: 1800px;
    }
  }
  @media (min-width: 2500px){

    .container{
      max-width: 2500px;
    }
  }
  @media (min-width: 3200px){

    .container{
      max-width: 3200px;
    }
  }
  .pointer-events-none{
    pointer-events: none;
  }
  .pointer-events-auto{
    pointer-events: auto;
  }
  .\!visible{
    visibility: visible !important;
  }
  .visible{
    visibility: visible;
  }
  .invisible{
    visibility: hidden;
  }
  .collapse{
    visibility: collapse;
  }
  .static{
    position: static;
  }
  .fixed{
    position: fixed;
  }
  .absolute{
    position: absolute;
  }
  .relative{
    position: relative;
  }
  .inset-0{
    inset: 0px;
  }
  .-bottom-4{
    bottom: -1rem;
  }
  .-right-14{
    right: -3.5rem;
  }
  .-right-4{
    right: -1rem;
  }
  .bottom-0{
    bottom: 0px;
  }
  .bottom-\[10px\]{
    bottom: 10px;
  }
  .bottom-full{
    bottom: 100%;
  }
  .left-0{
    left: 0px;
  }
  .left-1\/2{
    left: 50%;
  }
  .left-12{
    left: 3rem;
  }
  .left-2{
    left: 0.5rem;
  }
  .left-\[-350px\]{
    left: -350px;
  }
  .right-\[10px\]{
    right: 10px;
  }
  .top-0{
    top: 0px;
  }
  .top-2{
    top: 0.5rem;
  }
  .top-\[50px\]{
    top: 50px;
  }
  .top-auto{
    top: auto;
  }
  .z-10{
    z-index: 10;
  }
  .z-20{
    z-index: 20;
  }
  .z-\[1000\]{
    z-index: 1000;
  }
  .z-\[9999\]{
    z-index: 9999;
  }
  .col-span-full{
    grid-column: 1 / -1;
  }
  .row-span-full{
    grid-row: 1 / -1;
  }
  .m-0{
    margin: 0px;
  }
  .m-1{
    margin: 0.25rem;
  }
  .m-12{
    margin: 3rem;
  }
  .m-2{
    margin: 0.5rem;
  }
  .m-8{
    margin: 2rem;
  }
  .mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .my-2\.5{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
  .my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .mb-10{
    margin-bottom: 2.5rem;
  }
  .mb-2{
    margin-bottom: 0.5rem;
  }
  .mb-3{
    margin-bottom: 0.75rem;
  }
  .mb-4{
    margin-bottom: 1rem;
  }
  .mb-6{
    margin-bottom: 1.5rem;
  }
  .mb-7{
    margin-bottom: 1.75rem;
  }
  .ml-1{
    margin-left: 0.25rem;
  }
  .ml-2{
    margin-left: 0.5rem;
  }
  .ml-5{
    margin-left: 1.25rem;
  }
  .ml-6{
    margin-left: 1.5rem;
  }
  .ml-\[-13px\]{
    margin-left: -13px;
  }
  .ml-auto{
    margin-left: auto;
  }
  .mr-1{
    margin-right: 0.25rem;
  }
  .mr-2{
    margin-right: 0.5rem;
  }
  .mt-0{
    margin-top: 0px;
  }
  .mt-1{
    margin-top: 0.25rem;
  }
  .mt-2{
    margin-top: 0.5rem;
  }
  .mt-2\.5{
    margin-top: 0.625rem;
  }
  .mt-24{
    margin-top: 6rem;
  }
  .mt-4{
    margin-top: 1rem;
  }
  .mt-5{
    margin-top: 1.25rem;
  }
  .mt-6{
    margin-top: 1.5rem;
  }
  .mt-8{
    margin-top: 2rem;
  }
  .mt-\[6px\]{
    margin-top: 6px;
  }
  .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;
  }
  .size-1{
    width: 0.25rem;
    height: 0.25rem;
  }
  .size-5{
    width: 1.25rem;
    height: 1.25rem;
  }
  .size-6{
    width: 1.5rem;
    height: 1.5rem;
  }
  .size-\[120px\]{
    width: 120px;
    height: 120px;
  }
  .h-0{
    height: 0px;
  }
  .h-1{
    height: 0.25rem;
  }
  .h-1\/2{
    height: 50%;
  }
  .h-10{
    height: 2.5rem;
  }
  .h-12{
    height: 3rem;
  }
  .h-16{
    height: 4rem;
  }
  .h-36{
    height: 9rem;
  }
  .h-48{
    height: 12rem;
  }
  .h-6{
    height: 1.5rem;
  }
  .h-64{
    height: 16rem;
  }
  .h-8{
    height: 2rem;
  }
  .h-96{
    height: 26rem;
  }
  .h-\[22px\]{
    height: 22px;
  }
  .h-\[28px\]{
    height: 28px;
  }
  .h-\[30rem\]{
    height: 30rem;
  }
  .h-\[36px\]{
    height: 36px;
  }
  .h-\[var\(--comfy-topbar-height\)\]{
    height: var(--comfy-topbar-height);
  }
  .h-fit{
    height: -moz-fit-content;
    height: fit-content;
  }
  .h-full{
    height: 100%;
  }
  .h-screen{
    height: 100vh;
  }
  .max-h-96{
    max-height: 26rem;
  }
  .max-h-\[100px\]{
    max-height: 100px;
  }
  .max-h-\[300px\]{
    max-height: 300px;
  }
  .max-h-full{
    max-height: 100%;
  }
  .min-h-5{
    min-height: 1.25rem;
  }
  .min-h-52{
    min-height: 13rem;
  }
  .min-h-8{
    min-height: 2rem;
  }
  .min-h-full{
    min-height: 100%;
  }
  .min-h-screen{
    min-height: 100vh;
  }
  .w-0{
    width: 0px;
  }
  .w-1{
    width: 0.25rem;
  }
  .w-1\/2{
    width: 50%;
  }
  .w-10{
    width: 2.5rem;
  }
  .w-110{
    width: 32rem;
  }
  .w-12{
    width: 3rem;
  }
  .w-14{
    width: 3.5rem;
  }
  .w-16{
    width: 4rem;
  }
  .w-24{
    width: 6rem;
  }
  .w-28{
    width: 7rem;
  }
  .w-3{
    width: 0.75rem;
  }
  .w-3\/12{
    width: 25%;
  }
  .w-32{
    width: 8rem;
  }
  .w-44{
    width: 11rem;
  }
  .w-48{
    width: 12rem;
  }
  .w-6{
    width: 1.5rem;
  }
  .w-64{
    width: 16rem;
  }
  .w-8{
    width: 2rem;
  }
  .w-\[22px\]{
    width: 22px;
  }
  .w-\[600px\]{
    width: 600px;
  }
  .w-auto{
    width: auto;
  }
  .w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .w-full{
    width: 100%;
  }
  .w-screen{
    width: 100vw;
  }
  .min-w-0{
    min-width: 0px;
  }
  .min-w-110{
    min-width: 32rem;
  }
  .min-w-32{
    min-width: 8rem;
  }
  .min-w-84{
    min-width: 22rem;
  }
  .min-w-96{
    min-width: 26rem;
  }
  .min-w-full{
    min-width: 100%;
  }
  .max-w-110{
    max-width: 32rem;
  }
  .max-w-48{
    max-width: 12rem;
  }
  .max-w-64{
    max-width: 16rem;
  }
  .max-w-\[150px\]{
    max-width: 150px;
  }
  .max-w-\[240px\]{
    max-width: 240px;
  }
  .max-w-\[400px\]{
    max-width: 400px;
  }
  .max-w-\[600px\]{
    max-width: 600px;
  }
  .max-w-\[900px\]{
    max-width: 900px;
  }
  .max-w-full{
    max-width: 100%;
  }
  .max-w-screen-sm{
    max-width: 640px;
  }
  .max-w-xl{
    max-width: 36rem;
  }
  .flex-1{
    flex: 1 1 0%;
  }
  .flex-shrink-0{
    flex-shrink: 0;
  }
  .shrink-0{
    flex-shrink: 0;
  }
  .flex-grow{
    flex-grow: 1;
  }
  .grow{
    flex-grow: 1;
  }
  .border-collapse{
    border-collapse: collapse;
  }
  .-translate-y-40{
    --tw-translate-y: -10rem;
    transform: translate(var(--tw-translate-x), 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));
  }
  .scale-75{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
    transform: translate(var(--tw-translate-x), 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));
  }
  .transform{
    transform: translate(var(--tw-translate-x), 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));
  }
  .cursor-move{
    cursor: move;
  }
  .cursor-not-allowed{
    cursor: not-allowed;
  }
  .cursor-pointer{
    cursor: pointer;
  }
  .touch-none{
    touch-action: none;
  }
  .select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .resize-none{
    resize: none;
  }
  .resize{
    resize: both;
  }
  .list-inside{
    list-style-position: inside;
  }
  .list-disc{
    list-style-type: disc;
  }
  .list-none{
    list-style-type: none;
  }
  .grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .flex-row{
    flex-direction: row;
  }
  .flex-row-reverse{
    flex-direction: row-reverse;
  }
  .flex-col{
    flex-direction: column;
  }
  .flex-wrap{
    flex-wrap: wrap;
  }
  .flex-nowrap{
    flex-wrap: nowrap;
  }
  .content-center{
    align-content: center;
  }
  .items-start{
    align-items: flex-start;
  }
  .items-center{
    align-items: center;
  }
  .justify-end{
    justify-content: flex-end;
  }
  .justify-center{
    justify-content: center;
  }
  .justify-between{
    justify-content: space-between;
  }
  .justify-around{
    justify-content: space-around;
  }
  .justify-evenly{
    justify-content: space-evenly;
  }
  .gap-0{
    gap: 0px;
  }
  .gap-1{
    gap: 0.25rem;
  }
  .gap-1\.5{
    gap: 0.375rem;
  }
  .gap-2{
    gap: 0.5rem;
  }
  .gap-3{
    gap: 0.75rem;
  }
  .gap-4{
    gap: 1rem;
  }
  .gap-6{
    gap: 1.5rem;
  }
  .gap-8{
    gap: 2rem;
  }
  .gap-\[4px\]{
    gap: 4px;
  }
  .gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .gap-y-2{
    row-gap: 0.5rem;
  }
  .space-x-1 > :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)));
  }
  .space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-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-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));
  }
  .place-self-end{
    place-self: end;
  }
  .justify-self-end{
    justify-self: end;
  }
  .overflow-auto{
    overflow: auto;
  }
  .overflow-hidden{
    overflow: hidden;
  }
  .overflow-y-auto{
    overflow-y: auto;
  }
  .overflow-x-hidden{
    overflow-x: hidden;
  }
  .truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .text-ellipsis{
    text-overflow: ellipsis;
  }
  .whitespace-nowrap{
    white-space: nowrap;
  }
  .whitespace-pre-line{
    white-space: pre-line;
  }
  .text-wrap{
    text-wrap: wrap;
  }
  .text-nowrap{
    text-wrap: nowrap;
  }
  .text-pretty{
    text-wrap: pretty;
  }
  .break-words{
    overflow-wrap: break-word;
  }
  .break-keep{
    word-break: keep-all;
  }
  .rounded{
    border-radius: 0.25rem;
  }
  .rounded-\[4px\]{
    border-radius: 4px;
  }
  .rounded-full{
    border-radius: 9999px;
  }
  .rounded-lg{
    border-radius: 0.5rem;
  }
  .rounded-md{
    border-radius: 0.375rem;
  }
  .rounded-none{
    border-radius: 0px;
  }
  .rounded-xl{
    border-radius: 0.75rem;
  }
  .rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .rounded-r-none{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  .border{
    border-width: 1px;
  }
  .border-0{
    border-width: 0px;
  }
  .border-\[0\.1rem\]{
    border-width: 0.1rem;
  }
  .border-\[1px\]{
    border-width: 1px;
  }
  .border-x-0{
    border-left-width: 0px;
    border-right-width: 0px;
  }
  .border-y{
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  .border-b{
    border-bottom-width: 1px;
  }
  .border-l{
    border-left-width: 1px;
  }
  .border-r{
    border-right-width: 1px;
  }
  .border-t{
    border-top-width: 1px;
  }
  .border-t-0{
    border-top-width: 0px;
  }
  .border-solid{
    border-style: solid;
  }
  .border-hidden{
    border-style: hidden;
  }
  .border-none{
    border-style: none;
  }
  .border-\[\#3D3D3D\]{
    --tw-border-opacity: 1;
    border-color: rgb(61 61 61 / var(--tw-border-opacity));
  }
  .border-\[\#C0C4C2\]{
    --tw-border-opacity: 1;
    border-color: rgb(192 196 194 / var(--tw-border-opacity));
  }
  .border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgb(160 174 192 / var(--tw-border-opacity));
  }
  .border-neutral-700{
    --tw-border-opacity: 1;
    border-color: rgb(64 64 64 / var(--tw-border-opacity));
  }
  .border-nordy-comfy-violet{
    --tw-border-opacity: 1;
    border-color: rgb(129 165 249 / var(--tw-border-opacity));
  }
  .border-nordy-gray-500{
    --tw-border-opacity: 1;
    border-color: rgb(133 133 133 / var(--tw-border-opacity));
  }
  .border-nordy-main{
    --tw-border-opacity: 1;
    border-color: rgb(93 255 177 / var(--tw-border-opacity));
  }
  .border-red-500{
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity));
  }
  .border-transparent{
    border-color: transparent;
  }
  .bg-\[\#0D0D0D\]{
    --tw-bg-opacity: 1;
    background-color: rgb(13 13 13 / var(--tw-bg-opacity));
  }
  .bg-\[\#212121\]{
    --tw-bg-opacity: 1;
    background-color: rgb(33 33 33 / var(--tw-bg-opacity));
  }
  .bg-\[\#222\]{
    --tw-bg-opacity: 1;
    background-color: rgb(34 34 34 / var(--tw-bg-opacity));
  }
  .bg-\[\#236692\]{
    --tw-bg-opacity: 1;
    background-color: rgb(35 102 146 / var(--tw-bg-opacity));
  }
  .bg-\[\#333\]{
    --tw-bg-opacity: 1;
    background-color: rgb(51 51 51 / var(--tw-bg-opacity));
  }
  .bg-\[var\(--comfy-menu-bg\)\]{
    background-color: var(--comfy-menu-bg);
  }
  .bg-\[var\(--p-tree-background\)\]{
    background-color: var(--p-tree-background);
  }
  .bg-black{
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  }
  .bg-black\/50{
    background-color: rgb(0 0 0 / 0.5);
  }
  .bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgb(66 153 225 / var(--tw-bg-opacity));
  }
  .bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgb(243 246 250 / var(--tw-bg-opacity));
  }
  .bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgb(113 128 150 / var(--tw-bg-opacity));
  }
  .bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(45 55 72 / var(--tw-bg-opacity));
  }
  .bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgb(26 32 44 / var(--tw-bg-opacity));
  }
  .bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgb(150 206 76 / var(--tw-bg-opacity));
  }
  .bg-neutral-300{
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 212 / var(--tw-bg-opacity));
  }
  .bg-neutral-700{
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity));
  }
  .bg-neutral-800{
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity));
  }
  .bg-neutral-900{
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity));
  }
  .bg-nordy-main{
    --tw-bg-opacity: 1;
    background-color: rgb(93 255 177 / var(--tw-bg-opacity));
  }
  .bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity));
  }
  .bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity));
  }
  .bg-transparent{
    background-color: transparent;
  }
  .bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
  .bg-opacity-0{
    --tw-bg-opacity: 0;
  }
  .bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }
  .bg-\[url\(\'\/assets\/images\/Git-Logo-White\.svg\'\)\]{
    background-image: url('/comfyui/assets/images/Git-Logo-White.svg');
  }
  .bg-right-top{
    background-position: right top;
  }
  .bg-no-repeat{
    background-repeat: no-repeat;
  }
  .bg-origin-padding{
    background-origin: padding-box;
  }
  .fill-white{
    fill: #fff;
  }
  .object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }
  .object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }
  .object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .p-0{
    padding: 0px;
  }
  .p-0\.5{
    padding: 0.125rem;
  }
  .p-1{
    padding: 0.25rem;
  }
  .p-2{
    padding: 0.5rem;
  }
  .p-3{
    padding: 0.75rem;
  }
  .p-4{
    padding: 1rem;
  }
  .p-5{
    padding: 1.25rem;
  }
  .p-6{
    padding: 1.5rem;
  }
  .p-8{
    padding: 2rem;
  }
  .px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
  .px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .px-\[10px\]{
    padding-left: 10px;
    padding-right: 10px;
  }
  .py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
  .py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .py-\[14px\]{
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .pb-0{
    padding-bottom: 0px;
  }
  .pb-16{
    padding-bottom: 4rem;
  }
  .pl-2{
    padding-left: 0.5rem;
  }
  .pl-4{
    padding-left: 1rem;
  }
  .pl-5{
    padding-left: 1.25rem;
  }
  .pl-6{
    padding-left: 1.5rem;
  }
  .pr-0{
    padding-right: 0px;
  }
  .pr-2{
    padding-right: 0.5rem;
  }
  .pt-1{
    padding-top: 0.25rem;
  }
  .pt-10{
    padding-top: 2.5rem;
  }
  .pt-2{
    padding-top: 0.5rem;
  }
  .pt-4{
    padding-top: 1rem;
  }
  .pt-6{
    padding-top: 1.5rem;
  }
  .pt-8{
    padding-top: 2rem;
  }
  .text-center{
    text-align: center;
  }
  .text-right{
    text-align: right;
  }
  .font-mono{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  }
  .font-sans{
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  .text-2xl{
    font-size: 1.5rem;
  }
  .text-3xl{
    font-size: 1.875rem;
  }
  .text-4xl{
    font-size: 2.25rem;
  }
  .text-\[12px\]{
    font-size: 12px;
  }
  .text-\[14px\]{
    font-size: 14px;
  }
  .text-lg{
    font-size: 1.125rem;
  }
  .text-sm{
    font-size: 0.875rem;
  }
  .text-xl{
    font-size: 1.25rem;
  }
  .text-xs{
    font-size: 0.75rem;
  }
  .font-bold{
    font-weight: 700;
  }
  .font-light{
    font-weight: 300;
  }
  .font-medium{
    font-weight: 500;
  }
  .font-normal{
    font-weight: 400;
  }
  .font-semibold{
    font-weight: 600;
  }
  .uppercase{
    text-transform: uppercase;
  }
  .italic{
    font-style: italic;
  }
  .leading-5{
    line-height: 1.25rem;
  }
  .tracking-\[-0\.32px\]{
    letter-spacing: -0.32px;
  }
  .text-\[\#999\]{
    --tw-text-opacity: 1;
    color: rgb(153 153 153 / var(--tw-text-opacity));
  }
  .text-\[\#CCCCCC\]{
    --tw-text-opacity: 1;
    color: rgb(204 204 204 / var(--tw-text-opacity));
  }
  .text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
  }
  .text-blue-400{
    --tw-text-opacity: 1;
    color: rgb(99 179 237 / var(--tw-text-opacity));
  }
  .text-blue-600{
    --tw-text-opacity: 1;
    color: rgb(49 130 206 / var(--tw-text-opacity));
  }
  .text-gray-200{
    --tw-text-opacity: 1;
    color: rgb(237 242 247 / var(--tw-text-opacity));
  }
  .text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity));
  }
  .text-gray-400{
    --tw-text-opacity: 1;
    color: rgb(203 213 224 / var(--tw-text-opacity));
  }
  .text-gray-500{
    --tw-text-opacity: 1;
    color: rgb(160 174 192 / var(--tw-text-opacity));
  }
  .text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(113 128 150 / var(--tw-text-opacity));
  }
  .text-green-500{
    --tw-text-opacity: 1;
    color: rgb(150 206 76 / var(--tw-text-opacity));
  }
  .text-highlight{
    color: var(--p-primary-color);
  }
  .text-muted{
    color: var(--p-text-muted-color);
  }
  .text-neutral-100{
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity));
  }
  .text-neutral-200{
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity));
  }
  .text-neutral-300{
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity));
  }
  .text-neutral-400{
    --tw-text-opacity: 1;
    color: rgb(163 163 163 / var(--tw-text-opacity));
  }
  .text-neutral-800{
    --tw-text-opacity: 1;
    color: rgb(38 38 38 / var(--tw-text-opacity));
  }
  .text-neutral-900{
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity));
  }
  .text-nordy-comfy-violet{
    --tw-text-opacity: 1;
    color: rgb(129 165 249 / var(--tw-text-opacity));
  }
  .text-nordy-main-bg{
    --tw-text-opacity: 1;
    color: rgb(17 17 17 / var(--tw-text-opacity));
  }
  .text-red-500{
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity));
  }
  .text-red-600{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity));
  }
  .text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
  .underline{
    text-decoration-line: underline;
  }
  .no-underline{
    text-decoration-line: none;
  }
  .antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .opacity-0{
    opacity: 0;
  }
  .opacity-100{
    opacity: 1;
  }
  .opacity-15{
    opacity: 0.15;
  }
  .opacity-25{
    opacity: 0.25;
  }
  .opacity-40{
    opacity: 0.4;
  }
  .opacity-50{
    opacity: 0.5;
  }
  .opacity-65{
    opacity: 0.65;
  }
  .opacity-75{
    opacity: 0.75;
  }
  .shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .outline{
    outline-style: solid;
  }
  .blur{
    --tw-blur: blur(8px);
    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);
  }
  .drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
    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);
  }
  .invert{
    --tw-invert: invert(100%);
    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);
  }
  .filter{
    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);
  }
  .backdrop-filter{
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }
  .transition{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    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;
  }
  .transition-opacity{
    transition-property: opacity;
    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-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }
  .ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  .content-\[\'\'\]{
    --tw-content: '';
    content: var(--tw-content);
  }
}

:root {
  --fg-color: #000;
  --bg-color: #fff;
  --comfy-menu-bg: #353535;
  --comfy-menu-secondary-bg: #292929;
  --comfy-topbar-height: 2.5rem;
  --comfy-input-bg: #222;
  --input-text: #ddd;
  --descrip-text: #999;
  --drag-text: #ccc;
  --error-text: #ff4444;
  --border-color: #4e4e4e;
  --tr-even-bg-color: #222;
  --tr-odd-bg-color: #353535;
  --primary-bg: #236692;
  --primary-fg: #ffffff;
  --primary-hover-bg: #3485bb;
  --primary-hover-fg: #ffffff;
  --content-bg: #e0e0e0;
  --content-fg: #000;
  --content-hover-bg: #adadad;
  --content-hover-fg: #000;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg-color: #fff;
    --bg-color: #202020;
    --content-bg: #4e4e4e;
    --content-fg: #fff;
    --content-hover-bg: #222;
    --content-hover-fg: #fff;
  }
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--bg-color) var(--bg-img);
  color: var(--fg-color);
  min-height: -webkit-fill-available;
  max-height: -webkit-fill-available;
  min-width: -webkit-fill-available;
  max-width: -webkit-fill-available;
  font-family: Arial, sans-serif;
}

.comfy-multiline-input {
  background-color: var(--comfy-input-bg);
  color: var(--input-text);
  overflow: hidden;
  overflow-y: auto;
  padding: 2px;
  resize: none;
  border: none;
  box-sizing: border-box;
  font-size: var(--comfy-textarea-font-size);
}

.comfy-markdown {
  /* We assign the textarea and the Tiptap editor to the same CSS grid area to stack them on top of one another. */
  display: grid;
}

.comfy-markdown > textarea {
  grid-area: 1 / 1 / 2 / 2;
}

.comfy-markdown .tiptap {
  grid-area: 1 / 1 / 2 / 2;
  background-color: var(--comfy-input-bg);
  color: var(--input-text);
  overflow: hidden;
  overflow-y: auto;
  resize: none;
  border: none;
  box-sizing: border-box;
  font-size: var(--comfy-textarea-font-size);
  height: 100%;
  padding: 0.5em;
}

.comfy-markdown.editing .tiptap {
  display: none;
}

.comfy-markdown .tiptap :first-child {
  margin-top: 0;
}

.comfy-markdown .tiptap :last-child {
  margin-bottom: 0;
}

.comfy-markdown .tiptap blockquote {
  border-left: medium solid;
  margin-left: 1em;
  padding-left: 0.5em;
}

.comfy-markdown .tiptap pre {
  border: thin dotted;
  border-radius: 0.5em;
  margin: 0.5em;
  padding: 0.5em;
}

.comfy-markdown .tiptap table {
  border-collapse: collapse;
}

.comfy-markdown .tiptap th {
  text-align: left;
  background: var(--comfy-menu-bg);
}

.comfy-markdown .tiptap th,
.comfy-markdown .tiptap td {
  padding: 0.5em;
  border: thin solid;
}

.comfy-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  padding: 30px 30px 10px 30px;
  background-color: var(--comfy-menu-bg); /* Modal background */
  color: var(--error-text);
  box-shadow: 0 0 20px #888888;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  max-width: 80vw;
  max-height: 80vh;
  transform: translate(-50%, -50%);
  overflow: hidden;
  justify-content: center;
  font-family: monospace;
  font-size: 15px;
}

.comfy-modal-content {
  display: flex;
  flex-direction: column;
}

.comfy-modal p {
  overflow: auto;
  white-space: pre-line; /* This will respect line breaks */
  margin-bottom: 20px; /* Add some margin between the text and the close button*/
}

.comfy-modal select,
.comfy-modal input[type='button'],
.comfy-modal input[type='checkbox'] {
  margin: 3px 3px 3px 4px;
}

.comfy-menu {
  font-size: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  text-align: center;
  z-index: 999;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--descrip-text);
  background-color: var(--comfy-menu-bg);
  font-family: sans-serif;
  padding: 10px;
  border-radius: 0 8px 8px 8px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.comfy-menu-header {
  display: flex;
}

.comfy-menu-actions {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 20px;
  position: relative;
  top: -1px;
  font-size: 22px;
}

.comfy-menu .comfy-menu-actions button {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  border: none;
  cursor: pointer;
  font-size: inherit;
}

.comfy-menu .comfy-menu-actions .comfy-settings-btn {
  font-size: 0.6em;
}

button.comfy-close-menu-btn {
  font-size: 1em;
  line-height: 12px;
  color: #ccc;
  position: relative;
  top: -1px;
}

.comfy-menu-queue-size {
  flex: auto;
}

.comfy-menu button,
.comfy-modal button {
  font-size: 20px;
}

.comfy-menu-btns {
  margin-bottom: 10px;
  width: 100%;
}

.comfy-menu-btns button {
  font-size: 10px;
  width: 50%;
  color: var(--descrip-text) !important;
}

.comfy-menu > button {
  width: 100%;
}

.comfy-btn,
.comfy-menu > button,
.comfy-menu-btns button,
.comfy-menu .comfy-list button,
.comfy-modal button {
  color: var(--input-text);
  background-color: var(--comfy-input-bg);
  border-radius: 8px;
  border-color: var(--border-color);
  border-style: solid;
  margin-top: 2px;
}

.comfy-btn:hover:not(:disabled),
.comfy-menu > button:hover,
.comfy-menu-btns button:hover,
.comfy-menu .comfy-list button:hover,
.comfy-modal button:hover,
.comfy-menu-actions button:hover {
  filter: brightness(1.2);
  will-change: transform;
  cursor: pointer;
}

span.drag-handle {
  width: 10px;
  height: 20px;
  display: inline-block;
  overflow: hidden;
  line-height: 5px;
  padding: 3px 4px;
  cursor: move;
  vertical-align: middle;
  margin-top: -0.4em;
  margin-left: -0.2em;
  font-size: 12px;
  font-family: sans-serif;
  letter-spacing: 2px;
  color: var(--drag-text);
  text-shadow: 1px 0 1px black;
  touch-action: none;
}

span.drag-handle::after {
  content: '.. .. ..';
}

.comfy-queue-btn {
  width: 100%;
}

.comfy-list {
  color: var(--descrip-text);
  background-color: var(--comfy-menu-bg);
  margin-bottom: 10px;
  border-color: var(--border-color);
  border-style: solid;
}

.comfy-list-items {
  overflow-y: scroll;
  max-height: 100px;
  min-height: 25px;
  background-color: var(--comfy-input-bg);
  padding: 5px;
}

.comfy-list h4 {
  min-width: 160px;
  margin: 0;
  padding: 3px;
  font-weight: normal;
}

.comfy-list-items button {
  font-size: 10px;
}

.comfy-list-actions {
  margin: 5px;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.comfy-list-actions button {
  font-size: 12px;
}

button.comfy-queue-btn {
  margin: 6px 0 !important;
}

.comfy-modal.comfy-settings,
.comfy-modal.comfy-manage-templates {
  text-align: center;
  font-family: sans-serif;
  color: var(--descrip-text);
  z-index: 99;
}

.comfy-modal.comfy-settings input[type='range'] {
  vertical-align: middle;
}

.comfy-modal.comfy-settings input[type='range'] + input[type='number'] {
  width: 3.5em;
}

.comfy-modal input,
.comfy-modal select {
  color: var(--input-text);
  background-color: var(--comfy-input-bg);
  border-radius: 8px;
  border-color: var(--border-color);
  border-style: solid;
  font-size: inherit;
}

.comfy-tooltip-indicator {
  text-decoration: underline;
  text-decoration-style: dashed;
}

@media only screen and (max-height: 850px) {
  .comfy-menu {
    top: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    right: 0 !important;
    border-radius: 0;
  }

  .comfy-menu span.drag-handle {
    display: none;
  }

  .comfy-menu-queue-size {
    flex: unset;
  }

  .comfy-menu-header {
    justify-content: space-between;
  }
  .comfy-menu-actions {
    gap: 10px;
    font-size: 28px;
  }
}

/* Input popup */

.graphdialog {
  min-height: 1em;
  background-color: var(--comfy-menu-bg);
}

.graphdialog .name {
  font-size: 14px;
  font-family: sans-serif;
  color: var(--descrip-text);
}

.graphdialog button {
  margin-top: unset;
  vertical-align: unset;
  height: 1.6em;
  padding-right: 8px;
}

.graphdialog input,
.graphdialog textarea,
.graphdialog select {
  background-color: var(--comfy-input-bg);
  border: 2px solid;
  border-color: var(--border-color);
  color: var(--input-text);
  border-radius: 12px 0 0 12px;
}

/* Dialogs */

dialog {
  box-shadow: 0 0 20px #888888;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.comfy-dialog.comfyui-dialog.comfy-modal {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
}

.comfy-dialog.comfy-modal {
  font-family: Arial, sans-serif;
  border-color: var(--bg-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
}

.comfy-dialog .comfy-modal-content {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--fg-color);
}

.comfy-dialog .comfy-modal-content h3 {
  margin-top: 0;
}

.comfy-dialog .comfy-modal-content > p {
  width: 100%;
}

.comfy-dialog .comfy-modal-content > .comfyui-button {
  flex: 1;
  justify-content: center;
}

/* Context menu */

.litegraph .dialog {
  z-index: 1;
  font-family: Arial, sans-serif;
}

.litegraph .litemenu-entry.has_submenu {
  position: relative;
  padding-right: 20px;
}

.litemenu-entry.has_submenu::after {
  content: '>';
  position: absolute;
  top: 0;
  right: 2px;
}

.litegraph.litecontextmenu,
.litegraph.litecontextmenu.dark {
  z-index: 9999 !important;
  background-color: var(--comfy-menu-bg) !important;
}

.litegraph.litecontextmenu
  .litemenu-entry:hover:not(.disabled):not(.separator) {
  background-color: var(--comfy-menu-hover-bg, var(--border-color)) !important;
  color: var(--fg-color);
}

.litegraph.litecontextmenu .litemenu-entry.submenu,
.litegraph.litecontextmenu.dark .litemenu-entry.submenu {
  background-color: var(--comfy-menu-bg) !important;
  color: var(--input-text);
}

.litegraph.litecontextmenu input {
  background-color: var(--comfy-input-bg) !important;
  color: var(--input-text) !important;
}

.comfy-context-menu-filter {
  box-sizing: border-box;
  border: 1px solid #999;
  margin: 0 0 5px 5px;
  width: calc(100% - 10px);
}

.comfy-img-preview {
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.comfy-img-preview img {
  -o-object-fit: contain;
     object-fit: contain;
  width: var(--comfy-img-preview-width);
  height: var(--comfy-img-preview-height);
}

.comfy-missing-nodes li button {
  font-size: 12px;
  margin-left: 5px;
}

/* Search box */

.litegraph.litesearchbox {
  z-index: 9999 !important;
  background-color: var(--comfy-menu-bg) !important;
  overflow: hidden;
  display: block;
}

.litegraph.litesearchbox input,
.litegraph.litesearchbox select {
  background-color: var(--comfy-input-bg) !important;
  color: var(--input-text);
}

.litegraph.lite-search-item {
  color: var(--input-text);
  background-color: var(--comfy-input-bg);
  filter: brightness(80%);
  will-change: transform;
  padding-left: 0.2em;
}

.litegraph.lite-search-item.generic_type {
  color: var(--input-text);
  filter: brightness(50%);
  will-change: transform;
}

audio.comfy-audio.empty-audio-widget {
  display: none;
}

#vue-app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Set auto complete panel's width as it is not accessible within vue-root */
.p-autocomplete-overlay {
  max-width: 25vw;
}

.p-tree-node-content {
  padding: var(--comfy-tree-explorer-item-padding) !important;
}

/* Load3d styles */
.comfy-load-3d,
.comfy-load-3d-animation,
.comfy-preview-3d,
.comfy-preview-3d-animation {
  display: flex;
  flex-direction: column;
  background: transparent;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.comfy-load-3d canvas,
.comfy-load-3d-animation canvas,
.comfy-preview-3d canvas,
.comfy-preview-3d-animation canvas {
  display: flex;
  width: 100% !important;
  height: 100% !important;
}

/* End of Load3d styles */

/* [Desktop] Electron window specific styles */
.app-drag {
  app-region: drag;
}

.no-drag {
  app-region: no-drag;
}

.window-actions-spacer {
  width: calc(100vw - env(titlebar-area-width, 100vw));
}
/* End of [Desktop] Electron window specific styles */

.pysssss-image-feed--bottom,
.easyuse-toolbar,
button[aria-label='rgthree-comfy'],
button[aria-label='Workflow Bookmarks (rgthree-comfy)'],
button[aria-label='Unload Models'],
button[aria-label='EasyUse Group Map'],
button[aria-label='Free model and node cache'],
button[aria-label='Share'],
button[aria-label='ComfyUI Manager'],
button[aria-label='Show Image Feed 🐍'],

/* 커스텀노드 전원버튼 */
#bxRebootButtonNew {
  display: none !important;
}

/* 채널톡 버튼 이슈 */
#ch-plugin {
  height: 0px !important;
}
.placeholder\:text-\[\#BEBEBE\]::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(190 190 190 / var(--tw-text-opacity));
}
.placeholder\:text-\[\#BEBEBE\]::placeholder{
  --tw-text-opacity: 1;
  color: rgb(190 190 190 / var(--tw-text-opacity));
}
.focus-within\:border-solid:focus-within{
  border-style: solid;
}
.focus-within\:border-nordy-main:focus-within{
  --tw-border-opacity: 1;
  border-color: rgb(93 255 177 / var(--tw-border-opacity));
}
.focus-within\:border-red-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.focus-within\:outline:focus-within{
  outline-style: solid;
}
.focus-within\:outline-red-500:focus-within{
  outline-color: #ef4444;
}
.hover\:cursor-default:hover{
  cursor: default;
}
.hover\:cursor-pointer:hover{
  cursor: pointer;
}
.hover\:bg-\[\#333\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#4B84B6\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(75 132 182 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#4e4e4e\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(78 78 78 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#555\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(85 85 85 / var(--tw-bg-opacity));
}
.hover\:bg-black\/80:hover{
  background-color: rgb(0 0 0 / 0.8);
}
.hover\:bg-gray-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(113 128 150 / var(--tw-bg-opacity));
}
.hover\:bg-gray-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(45 55 72 / var(--tw-bg-opacity));
}
.hover\:bg-neutral-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity));
}
.hover\:bg-nordy-gray-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(94 104 98 / var(--tw-bg-opacity));
}
.hover\:bg-nordy-main-hover:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(11 227 123 / var(--tw-bg-opacity));
}
.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity));
}
.hover\:bg-opacity-70:hover{
  --tw-bg-opacity: 0.7;
}
.hover\:bg-opacity-75:hover{
  --tw-bg-opacity: 0.75;
}
.hover\:text-blue-300:hover{
  --tw-text-opacity: 1;
  color: rgb(144 205 244 / var(--tw-text-opacity));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:opacity-40:disabled{
  opacity: 0.4;
}
.group:hover .group-hover\:underline{
  text-decoration-line: underline;
}
@media (prefers-reduced-motion: no-preference){

  .motion-safe\:w-0{
    width: 0px;
  }

  .motion-safe\:opacity-0{
    opacity: 0;
  }

  .group\/sidebar-tab:focus-within .motion-safe\:group-focus-within\/sidebar-tab\:w-auto{
    width: auto;
  }

  .group\/sidebar-tab:focus-within .motion-safe\:group-focus-within\/sidebar-tab\:opacity-100{
    opacity: 1;
  }

  .group\/sidebar-tab:hover .motion-safe\:group-hover\/sidebar-tab\:w-auto{
    width: auto;
  }

  .group\/sidebar-tab:hover .motion-safe\:group-hover\/sidebar-tab\:opacity-100{
    opacity: 1;
  }

  .group\/tree-node:hover .motion-safe\:group-hover\/tree-node\:opacity-100{
    opacity: 1;
  }
}
@media not all and (min-width: 640px){

  .max-sm\:hidden{
    display: none;
  }

  .max-sm\:px-\[6px\]{
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (min-width: 768px){

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }
}
@media (min-width: 1536px){

  .\32xl\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .\32xl\:w-64{
    width: 16rem;
  }

  .\32xl\:max-w-full{
    max-width: 100%;
  }

  .\32xl\:p-16{
    padding: 4rem;
  }

  .\32xl\:p-4{
    padding: 1rem;
  }

  .\32xl\:p-\[var\(--p-dialog-content-padding\)\]{
    padding: var(--p-dialog-content-padding);
  }

  .\32xl\:p-\[var\(--p-dialog-header-padding\)\]{
    padding: var(--p-dialog-header-padding);
  }

  .\32xl\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .\32xl\:text-sm{
    font-size: 0.875rem;
  }
}
@media (prefers-color-scheme: dark){

  .dark\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(45 55 72 / var(--tw-bg-opacity));
  }
}

.global-dialog .p-dialog-header {
    padding: 0.5rem
}
@media (min-width: 1536px) {
.global-dialog .p-dialog-header {
        padding: var(--p-dialog-header-padding)
}
}
.global-dialog .p-dialog-header {
    padding-bottom: 0px
}
.global-dialog .p-dialog-content {
    padding: 0.5rem
}
@media (min-width: 1536px) {
.global-dialog .p-dialog-content {
        padding: var(--p-dialog-content-padding)
}
}
.global-dialog .p-dialog-content {
    padding-top: 0px
}

.prompt-dialog-content[data-v-4f1e3bbe] {
  white-space: pre-wrap;
}

.no-results-placeholder[data-v-f2b77816] .p-card {
  background-color: var(--surface-ground);
  text-align: center;
  box-shadow: unset;
}
.no-results-placeholder h3[data-v-f2b77816] {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}
.no-results-placeholder p[data-v-f2b77816] {
  color: var(--text-color-secondary);
  margin-bottom: 1rem;
}

.comfy-error-report[data-v-c6407988] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.action-container[data-v-c6407988] {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.wrapper-pre[data-v-c6407988] {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.comfy-missing-models[data-v-713f9d4a] {
  max-height: 300px;
  overflow-y: auto;
}

[data-v-53692f7e] .i-badge {

    --tw-bg-opacity: 1;

    background-color: rgb(150 206 76 / var(--tw-bg-opacity));

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity))
}
[data-v-53692f7e] .o-badge {

    --tw-bg-opacity: 1;

    background-color: rgb(239 68 68 / var(--tw-bg-opacity));

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity))
}
[data-v-53692f7e] .c-badge {

    --tw-bg-opacity: 1;

    background-color: rgb(66 153 225 / var(--tw-bg-opacity));

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity))
}
[data-v-53692f7e] .s-badge {

    --tw-bg-opacity: 1;

    background-color: rgb(234 179 8 / var(--tw-bg-opacity))
}

[data-v-b3ab067d] .p-inputtext {
  --p-form-field-padding-x: 0.625rem;
}
.p-button.p-inputicon[data-v-b3ab067d] {
  width: auto;
  border-style: none;
  padding: 0px;
}

.form-input[data-v-a29c257f] .input-slider .p-inputnumber input,
.form-input[data-v-a29c257f] .input-slider .slider-part {

    width: 5rem
}
.form-input[data-v-a29c257f] .p-inputtext,
.form-input[data-v-a29c257f] .p-select {

    width: 11rem
}

.settings-tab-panels {
  padding-top: 0px !important;
}

.settings-container[data-v-2e21278f] {
  display: flex;
  height: 70vh;
  width: 60vw;
  max-width: 1024px;
  overflow: hidden;
}
@media (max-width: 768px) {
.settings-container[data-v-2e21278f] {
    flex-direction: column;
    height: auto;
    width: 80vw;
}
.settings-sidebar[data-v-2e21278f] {
    width: 100%;
}
.settings-content[data-v-2e21278f] {
    height: 350px;
}
}

/* Show a separator line above the Keybinding tab */
/* This indicates the start of custom setting panels */
.settings-sidebar[data-v-2e21278f] .p-listbox-option[aria-label='Keybinding'] {
  position: relative;
}
.settings-sidebar[data-v-2e21278f] .p-listbox-option[aria-label='Keybinding']::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  --tw-content: '';
  content: var(--tw-content);
  border-top: 1px solid var(--p-divider-border-color);
}

.pi-cog[data-v-43089afc] {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.version-tag[data-v-43089afc] {
  margin-left: 0.5rem;
}

.p-card[data-v-ffc83afa] {
  --p-card-body-padding: 10px 0 0 0;
  overflow: hidden;
}
[data-v-ffc83afa] .p-card-subtitle {
  text-align: center;
}

.carousel[data-v-d9962275] {
  width: 66vw;
}

.test[data-v-855c18ab] {
  width: 500px;
  height: 500px;
}

.comfy-missing-nodes[data-v-c9b0c909] {
  max-height: 300px;
  overflow-y: auto;
}
.node-hint[data-v-c9b0c909] {
  margin-left: 0.5rem;
  font-style: italic;
  color: var(--text-color-secondary);
}
[data-v-c9b0c909] .p-button {
  margin-left: auto;
}

[data-v-873a313f] .p-terminal .xterm {
  overflow-x: auto;
}
[data-v-873a313f] .p-terminal .xterm-screen {
  background-color: black;
  overflow-y: hidden;
}

[data-v-14fef2e4] .p-terminal .xterm {
  overflow-x: auto;
}
[data-v-14fef2e4] .p-terminal .xterm-screen {
  background-color: black;
  overflow-y: hidden;
}

[data-v-cf0c7d52] .p-terminal .xterm {
  overflow-x: auto;
}
[data-v-cf0c7d52] .p-terminal .xterm-screen {
  background-color: black;
  overflow-y: hidden;
}
.mdi.rotate270::before {
  transform: rotate(270deg);
}

/* Generic */
.comfyui-button {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  box-sizing: border-box;
  margin: 0;
  transition: box-shadow 0.1s;
}

.comfyui-button:active {
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.comfyui-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.primary .comfyui-button,
.primary.comfyui-button {
  background-color: var(--primary-bg) !important;
  color: var(--primary-fg) !important;
}

.primary .comfyui-button:not(:disabled):hover,
.primary.comfyui-button:not(:disabled):hover {
  background-color: var(--primary-hover-bg) !important;
  color: var(--primary-hover-fg) !important;
}

/* Popup */
.comfyui-popup {
  position: absolute;
  left: var(--left);
  right: var(--right);
  top: var(--top);
  bottom: var(--bottom);
  z-index: 2000;
  max-height: calc(100vh - var(--limit) - 10px);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.comfyui-popup:not(.open) {
  display: none;
}

.comfyui-popup.right.open {
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
/* Split button */
.comfyui-split-button {
  position: relative;
  display: flex;
}

.comfyui-split-primary {
  flex: auto;
}

.comfyui-split-primary .comfyui-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid var(--comfy-menu-bg);
  width: 100%;
}

.comfyui-split-arrow .comfyui-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 2px;
  padding-right: 2px;
}

.comfyui-split-button-popup {
  white-space: nowrap;
  background-color: var(--content-bg);
  color: var(--content-fg);
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.comfyui-split-button-popup.hover {
  z-index: 2001;
}
.comfyui-split-button-popup > .comfyui-button {
  border: none;
  background-color: transparent;
  color: var(--fg-color);
  padding: 8px 12px 8px 8px;
}

.comfyui-split-button-popup > .comfyui-button:not(:disabled):hover {
  background-color: var(--comfy-input-bg);
}

/* Button group */
.comfyui-button-group {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.comfyui-button-group:empty {
  display: none;
}
.comfyui-button-group > .comfyui-button,
.comfyui-button-group > .comfyui-button-wrapper > .comfyui-button {
  padding: 4px 10px;
  border-radius: 0;
}

/* Menu */
.comfyui-menu .mdi::before {
  font-size: 18px;
}

.comfyui-menu .comfyui-button {
  background: var(--comfy-input-bg);
  color: var(--fg-color);
  white-space: nowrap;
}

.comfyui-menu .comfyui-button:not(:disabled):hover {
  background: var(--border-color);
  color: var(--content-fg);
}

.comfyui-menu .comfyui-split-button-popup > .comfyui-button {
  border-radius: 0;
  background-color: transparent;
}

.comfyui-menu .comfyui-split-button-popup > .comfyui-button:not(:disabled):hover {
  background-color: var(--comfy-input-bg);
}

.comfyui-menu .comfyui-split-button-popup.left {
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.comfyui-menu .comfyui-button.popup-open {
  background-color: var(--content-bg);
  color: var(--content-fg);
}

.comfyui-menu-push {
  margin-left: -0.8em;
  flex: auto;
}

/** Send to workflow widget selection dialog */
.comfy-widget-selection-dialog {
  border: none;
}

.comfy-widget-selection-dialog div {
  color: var(--fg-color);
  font-family: Arial, Helvetica, sans-serif;
}

.comfy-widget-selection-dialog h2 {
  margin-top: 0;
}

.comfy-widget-selection-dialog section {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.comfy-widget-selection-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comfy-widget-selection-item span {
  margin-right: auto;
}

.comfy-widget-selection-item span::before {
  content: '#' attr(data-id);
  opacity: 0.5;
  margin-right: 5px;
}

.comfy-modal .comfy-widget-selection-item button {
  font-size: 1em;
}

/***** Responsive *****/
.lg.comfyui-menu .lt-lg-show {
  display: none !important;
}
.comfyui-menu:not(.lg) .nlg-hide {
  display: none !important;
}
/** Large screen */
.lg.comfyui-menu>.comfyui-menu-mobile-collapse .comfyui-button span,
.lg.comfyui-menu>.comfyui-menu-mobile-collapse.comfyui-button span {
  display: none;
}
.lg.comfyui-menu>.comfyui-menu-mobile-collapse .comfyui-popup .comfyui-button span {
  display: unset;
}

/** Non large screen */
.lt-lg.comfyui-menu {
  flex-wrap: wrap;
}

.lt-lg.comfyui-menu > *:not(.comfyui-menu-mobile-collapse) {
  order: 1;
}

.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse {
  order: 9999;
  width: 100%;
}

.comfyui-body-bottom .lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse {
  order: -1;
}

.comfyui-body-bottom .lt-lg.comfyui-menu > .comfyui-menu-button {
  top: unset;
  bottom: 4px;
}

.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse.comfyui-button-group {
  flex-wrap: wrap;
}

.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse .comfyui-button,
.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse.comfyui-button {
  padding: 10px;
}
.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse .comfyui-button,
.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse .comfyui-button-wrapper {
  width: 100%;
}

.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse .comfyui-popup {
  position: static;
  background-color: var(--comfy-input-bg);
  max-width: unset;
  max-height: 50vh;
  overflow: auto;
}

.lt-lg.comfyui-menu:not(.expanded) > .comfyui-menu-mobile-collapse {
  display: none;
}

.lt-lg .comfyui-menu-button {
  position: absolute;
  top: 4px;
  right: 8px;
}

.lt-lg.comfyui-menu > .comfyui-menu-mobile-collapse .comfyui-view-list-popup {
  border-radius: 0;
}

.lt-lg.comfyui-menu .comfyui-workflows-popup {
  width: 100vw;
}

/** Small */
.lt-md .comfyui-workflows-button-inner {
  width: unset !important;
}
.lt-md  .comfyui-workflows-label {
  display: none;
}

/** Extra small */
.lt-sm .comfyui-interrupt-button {
  margin-right: 45px;
}
.comfyui-body-bottom .lt-sm.comfyui-menu > .comfyui-menu-button{
  bottom: 41px;
}


.editable-text[data-v-d670c40f] {
  display: inline;
}
.editable-text input[data-v-d670c40f] {
  width: 100%;
  box-sizing: border-box;
}

.tree-node[data-v-a945b5a8] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.leaf-count-badge[data-v-a945b5a8] {
  margin-left: 0.5rem;
}
.node-content[data-v-a945b5a8] {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.leaf-label[data-v-a945b5a8] {
  margin-left: 0.5rem;
}
[data-v-a945b5a8] .editable-text span {
  word-break: break-all;
}

[data-v-e3a237e6] .tree-explorer-node-label {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: var(--p-tree-node-gap);
  flex-grow: 1;
}

/*
 * The following styles are necessary to avoid layout shift when dragging nodes over folders.
 * By setting the position to relative on the parent and using an absolutely positioned pseudo-element,
 * we can create a visual indicator for the drop target without affecting the layout of other elements.
 */
[data-v-e3a237e6] .p-tree-node-content:has(.tree-folder) {
  position: relative;
}
[data-v-e3a237e6] .p-tree-node-content:has(.tree-folder.can-drop)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--p-content-color);
  pointer-events: none;
}

.slot_row[data-v-d9792337] {
  padding: 2px;
}

/* Original N-Sidebar styles */
._sb_dot[data-v-d9792337] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: grey;
}
.node_header[data-v-d9792337] {
  line-height: 1;
  padding: 8px 13px 7px;
  margin-bottom: 5px;
  font-size: 15px;
  text-wrap: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.headdot[data-v-d9792337] {
  width: 10px;
  height: 10px;
  float: inline-start;
  margin-right: 8px;
}
.IMAGE[data-v-d9792337] {
  background-color: #64b5f6;
}
.VAE[data-v-d9792337] {
  background-color: #ff6e6e;
}
.LATENT[data-v-d9792337] {
  background-color: #ff9cf9;
}
.MASK[data-v-d9792337] {
  background-color: #81c784;
}
.CONDITIONING[data-v-d9792337] {
  background-color: #ffa931;
}
.CLIP[data-v-d9792337] {
  background-color: #ffd500;
}
.MODEL[data-v-d9792337] {
  background-color: #b39ddb;
}
.CONTROL_NET[data-v-d9792337] {
  background-color: #a5d6a7;
}
._sb_node_preview[data-v-d9792337] {
  background-color: var(--comfy-menu-bg);
  font-family: 'Open Sans', sans-serif;
  font-size: small;
  color: var(--descrip-text);
  border: 1px solid var(--descrip-text);
  min-width: 300px;
  width: -moz-min-content;
  width: min-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 9999;
  border-radius: 12px;
  overflow: hidden;
  font-size: 12px;
  padding-bottom: 10px;
}
._sb_node_preview ._sb_description[data-v-d9792337] {
  margin: 10px;
  padding: 6px;
  background: var(--border-color);
  border-radius: 5px;
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  word-break: break-word;
}
._sb_table[data-v-d9792337] {
  display: grid;

  grid-column-gap: 10px;
  /* Spazio tra le colonne */
  width: 100%;
  /* Imposta la larghezza della tabella al 100% del contenitore */
}
._sb_row[data-v-d9792337] {
  display: grid;
  grid-template-columns: 10px 1fr 1fr 1fr 10px;
  grid-column-gap: 10px;
  align-items: center;
  padding-left: 9px;
  padding-right: 9px;
}
._sb_row_string[data-v-d9792337] {
  grid-template-columns: 10px 1fr 1fr 10fr 1fr;
}
._sb_col[data-v-d9792337] {
  border: 0px solid #000;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-end;
}
._sb_inherit[data-v-d9792337] {
  display: inherit;
}
._long_field[data-v-d9792337] {
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  margin: 5px 5px 0 5px;
  border-radius: 10px;
  line-height: 1.7;
  text-wrap: nowrap;
}
._sb_arrow[data-v-d9792337] {
  color: var(--fg-color);
}
._sb_preview_badge[data-v-d9792337] {
  text-align: center;
  background: var(--comfy-input-bg);
  font-weight: bold;
  color: var(--error-text);
}

._content[data-v-c4279e6b] {

    display: flex;

    flex-direction: column
}
._content[data-v-c4279e6b] > :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))
}
._footer[data-v-c4279e6b] {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    padding-top: 1rem
}

[data-v-0061c432] .p-toolbar-end .p-button {

    padding-top: 0.25rem;

    padding-bottom: 0.25rem
}
@media (min-width: 1536px) {
[data-v-0061c432] .p-toolbar-end .p-button {

        padding-top: 0.5rem;

        padding-bottom: 0.5rem
}
}
[data-v-0061c432] .p-toolbar-start {

    min-width: 0px;

    flex: 1 1 0%;

    overflow: hidden
}

.node-lib-node-container[data-v-9afa0d60] {
    height: 100%;
    width: 100%
}

.p-selectbutton .p-button[data-v-bd06e12b] {
  padding: 0.5rem;
}
.p-selectbutton .p-button .pi[data-v-bd06e12b] {
  font-size: 1.5rem;
}
.field[data-v-bd06e12b] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.color-picker-container[data-v-bd06e12b] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comfy-image-wrap[data-v-a748ccd8] {
  display: contents;
}
.comfy-image-blur[data-v-a748ccd8] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comfy-image-main[data-v-a748ccd8] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.contain .comfy-image-wrap[data-v-a748ccd8] {
  position: relative;
  width: 100%;
  height: 100%;
}
.contain .comfy-image-main[data-v-a748ccd8] {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: absolute;
}
.broken-image-placeholder[data-v-a748ccd8] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 2rem;
}
.broken-image-placeholder i[data-v-a748ccd8] {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* PrimeVue's galleria teleports the fullscreen gallery out of subtree so we
cannot use scoped style here. */
img.galleria-image {
  max-width: 100vw;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-galleria-close-button {
  /* Set z-index so the close button doesn't get hidden behind the image when image is large */
  z-index: 1;
}

.scroll-container {
&[data-v-ad33a347] {
  height: 100%;
  overflow-y: auto;

  /* Firefox */
  scrollbar-width: none;
}
&[data-v-ad33a347]::-webkit-scrollbar {
    width: 1px;
}
&[data-v-ad33a347]::-webkit-scrollbar-thumb {
    background-color: transparent;
}
}

.result-container[data-v-b69edf65] {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preview-mask[data-v-b69edf65] {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.result-container:hover .preview-mask[data-v-b69edf65] {
  opacity: 1;
}

.task-result-preview[data-v-9a4c35cf] {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.task-result-preview i[data-v-9a4c35cf],
.task-result-preview span[data-v-9a4c35cf] {
  font-size: 2rem;
}
.task-item[data-v-9a4c35cf] {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.task-item-details[data-v-9a4c35cf] {
  position: absolute;
  bottom: 0;
  padding: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.task-node-link[data-v-9a4c35cf] {
  padding: 2px;
}

/* In dark mode, transparent background color for tags is not ideal for tags that
are floating on top of images. */
.tag-wrapper[data-v-9a4c35cf] {
  background-color: var(--p-primary-contrast-color);
  border-radius: 6px;
  display: inline-flex;
}
.node-name-tag[data-v-9a4c35cf] {
  word-break: break-all;
}
.status-tag-group[data-v-9a4c35cf] {
  display: flex;
  flex-direction: column;
}
.progress-preview-img[data-v-9a4c35cf] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.queued-status[data-v-9a4c35cf] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: var(--p-primary-contrast-color);
  border-radius: 6px;
}
.queued-status i[data-v-9a4c35cf] {
  margin-right: 0.5rem;
}
