.lc-loading {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 1rem;   */
}

.lc-loading>.label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.lc-loading>.loading {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.title-loading {
  color: var(--text-dark);
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  padding-top: 12px;
}



/* uiball.com/ldrs helix  */

.lc-loading .container-helix {
  --uib-size: 45px;
  --uib-color: #471FCC;
  --uib-speed: 2.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: var(--uib-size);
  width: var(--uib-size);
  background-color: transparent;
  margin: 0 auto;
}

.lc-loading .slice {
  position: relative;
  height: calc(var(--uib-size) / 6);
  width: 100%;
}

.lc-loading .slice::before,
.lc-loading .slice::after {
  --uib-a: calc(var(--uib-speed) / -2);
  --uib-b: calc(var(--uib-speed) / -6);
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - var(--uib-size) / 12);
  height: 100%;
  width: calc(100% / 6);
  border-radius: 50%;
  background-color: var(--uib-color);
  flex-shrink: 0;
  animation: orbit var(--uib-speed) linear infinite;
  transition: background-color 0.3s ease;
}

.lc-loading .slice:nth-child(1)::after {
  animation-delay: var(--uib-a);
}

.lc-loading .slice:nth-child(2)::before {
  animation-delay: var(--uib-b);
}

.lc-loading .slice:nth-child(2)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b));
}

.lc-loading .slice:nth-child(3)::before {
  animation-delay: calc(var(--uib-b) * 2);
}

.lc-loading .slice:nth-child(3)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 2);
}

.lc-loading .slice:nth-child(4)::before {
  animation-delay: calc(var(--uib-b) * 3);
}

.lc-loading .slice:nth-child(4)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 3);
}

.lc-loading .slice:nth-child(5)::before {
  animation-delay: calc(var(--uib-b) * 4);
}

.lc-loading .slice:nth-child(5)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 4);
}

.lc-loading .slice:nth-child(6)::before {
  animation-delay: calc(var(--uib-b) * 5);
}

.lc-loading .slice:nth-child(6)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 5);
}

@keyframes helix {
  0% {
    transform: translateX(calc(var(--uib-size) * 0.25)) scale(0.73684);
    opacity: 0.65;
  }

  5% {
    transform: translateX(calc(var(--uib-size) * 0.235)) scale(0.684208);
    opacity: 0.58;
  }

  10% {
    transform: translateX(calc(var(--uib-size) * 0.182)) scale(0.631576);
    opacity: 0.51;
  }

  15% {
    transform: translateX(calc(var(--uib-size) * 0.129)) scale(0.578944);
    opacity: 0.44;
  }

  20% {
    transform: translateX(calc(var(--uib-size) * 0.076)) scale(0.526312);
    opacity: 0.37;
  }

  25% {
    transform: translateX(0%) scale(0.47368);
    opacity: 0.3;
  }

  30% {
    transform: translateX(calc(var(--uib-size) * -0.076)) scale(0.526312);
    opacity: 0.37;
  }

  35% {
    transform: translateX(calc(var(--uib-size) * -0.129)) scale(0.578944);
    opacity: 0.44;
  }

  40% {
    transform: translateX(calc(var(--uib-size) * -0.182)) scale(0.631576);
    opacity: 0.51;
  }

  45% {
    transform: translateX(calc(var(--uib-size) * -0.235)) scale(0.684208);
    opacity: 0.58;
  }

  50% {
    transform: translateX(calc(var(--uib-size) * -0.25)) scale(0.73684);
    opacity: 0.65;
  }

  55% {
    transform: translateX(calc(var(--uib-size) * -0.235)) scale(0.789472);
    opacity: 0.72;
  }

  60% {
    transform: translateX(calc(var(--uib-size) * -0.182)) scale(0.842104);
    opacity: 0.79;
  }

  65% {
    transform: translateX(calc(var(--uib-size) * -0.129)) scale(0.894736);
    opacity: 0.86;
  }

  70% {
    transform: translateX(calc(var(--uib-size) * -0.076)) scale(0.947368);
    opacity: 0.93;
  }

  75% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }

  80% {
    transform: translateX(calc(var(--uib-size) * 0.076)) scale(0.947368);
    opacity: 0.93;
  }

  85% {
    transform: translateX(calc(var(--uib-size) * 0.129)) scale(0.894736);
    opacity: 0.86;
  }

  90% {
    transform: translateX(calc(var(--uib-size) * 0.182)) scale(0.842104);
    opacity: 0.79;
  }

  95% {
    transform: translateX(calc(var(--uib-size) * 0.235)) scale(0.789472);
    opacity: 0.72;
  }

  100% {
    transform: translateX(calc(var(--uib-size) * 0.25)) scale(0.73684);
    opacity: 0.65;
  }
}

/* orbit */
.lc-loading .container-orbit {
  --uib-size: 24px;
  --uib-color: #471FCC;
  --uib-speed: 1.5s;
  --uib-dot-size: calc(var(--uib-size) * 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-dot-size);
  width: var(--uib-size);
  margin: 0 auto;
}

.lc-loading .container-orbit::before,
.lc-loading .container-orbit::after {
  content: '';
  position: absolute;
  height: var(--uib-dot-size);
  width: var(--uib-dot-size);
  border-radius: 50%;
  background-color: var(--uib-color);
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.lc-loading .container-orbit::before {
  animation: orbit var(--uib-speed) linear infinite;
}

.lc-loading .container-orbit::after {
  animation: orbit var(--uib-speed) linear calc(var(--uib-speed) / -2) infinite;
}

@keyframes orbit {
  0% {
    transform: translateX(calc(var(--uib-size) * 0.25)) scale(0.73684);
    opacity: 0.65;
  }

  5% {
    transform: translateX(calc(var(--uib-size) * 0.235)) scale(0.684208);
    opacity: 0.58;
  }

  10% {
    transform: translateX(calc(var(--uib-size) * 0.182)) scale(0.631576);
    opacity: 0.51;
  }

  15% {
    transform: translateX(calc(var(--uib-size) * 0.129)) scale(0.578944);
    opacity: 0.44;
  }

  20% {
    transform: translateX(calc(var(--uib-size) * 0.076)) scale(0.526312);
    opacity: 0.37;
  }

  25% {
    transform: translateX(0%) scale(0.47368);
    opacity: 0.3;
  }

  30% {
    transform: translateX(calc(var(--uib-size) * -0.076)) scale(0.526312);
    opacity: 0.37;
  }

  35% {
    transform: translateX(calc(var(--uib-size) * -0.129)) scale(0.578944);
    opacity: 0.44;
  }

  40% {
    transform: translateX(calc(var(--uib-size) * -0.182)) scale(0.631576);
    opacity: 0.51;
  }

  45% {
    transform: translateX(calc(var(--uib-size) * -0.235)) scale(0.684208);
    opacity: 0.58;
  }

  50% {
    transform: translateX(calc(var(--uib-size) * -0.25)) scale(0.73684);
    opacity: 0.65;
  }

  55% {
    transform: translateX(calc(var(--uib-size) * -0.235)) scale(0.789472);
    opacity: 0.72;
  }

  60% {
    transform: translateX(calc(var(--uib-size) * -0.182)) scale(0.842104);
    opacity: 0.79;
  }

  65% {
    transform: translateX(calc(var(--uib-size) * -0.129)) scale(0.894736);
    opacity: 0.86;
  }

  70% {
    transform: translateX(calc(var(--uib-size) * -0.076)) scale(0.947368);
    opacity: 0.93;
  }

  75% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }

  80% {
    transform: translateX(calc(var(--uib-size) * 0.076)) scale(0.947368);
    opacity: 0.93;
  }

  85% {
    transform: translateX(calc(var(--uib-size) * 0.129)) scale(0.894736);
    opacity: 0.86;
  }

  90% {
    transform: translateX(calc(var(--uib-size) * 0.182)) scale(0.842104);
    opacity: 0.79;
  }

  95% {
    transform: translateX(calc(var(--uib-size) * 0.235)) scale(0.789472);
    opacity: 0.72;
  }

  100% {
    transform: translateX(calc(var(--uib-size) * 0.25)) scale(0.73684);
    opacity: 0.65;
  }
}
.lc-datatableinfinite .pp-modal>.body>.content>form>.pp-input>.field {
    border: 1px solid #ddd;
}

.lc-datatableinfinite .pp-modal>.body>.content>form>.pp-input>.field:hover {
    border: 1px solid #898da6;
}

.lc-datatableinfinite>.topbar {
    display: flex;
    justify-content: space-between;
}

.lc-datatableinfinite>.topbar>.functions {
    color: #2E1956;
    display: flex;
    align-items: center;
    font-size: 28px;
    position: relative;
}

.lc-datatableinfinite>.topbar>.functions>div {
    display: flex;
}

.lc-datatableinfinite>.topbar>.functions>div>* {
    margin: 0 8px;
}

.lc-datatableinfinite>.topbar>.functions>div:not(:last-child) {
    padding-right: 8px;
    border-right: 1px #ddd solid;
}

.lc-datatableinfinite>.topbar>.functions>div:not(:first-child) {
    margin-left: 8px;
}

.lc-datatableinfinite>.topbar>.pagination {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.lc-datatableinfinite>.topbar>.pagination>.pageinfo {
    border-radius: 1rem;
    padding: 2px 8px;
    margin: 0 6px;
    font-size: 0.7rem; 
}

.lc-datatableinfinite>.header {
    position: relative;
    padding-right: .5rem;
}

.lc-datatableinfinite>.header>.row {
    display: flex;
    gap: 0;
    background-color: #fff;
    border-radius: 5px;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: #fff;
    border-bottom: solid 1px #E2E6F3;
    min-height: 28px;
}

.lc-datatableinfinite>.header>.row>.selectable {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    cursor: pointer;
}

.lc-datatableinfinite:has(.body-functions)>.header>.row>.cells {
    width: calc(100% - 28px);
}

.lc-datatableinfinite>.header>.row>.cells {
    display: flex;
    width: 100%;
    gap: 6px;
    align-items: center;
}

.lc-datatableinfinite>.header>.row>.cells>.cell {
    font-family: "Ubuntu", sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6B6F7D;
    min-width: 0;
    transition: all 0.2s ease;
}

.lc-datatableinfinite>.header>.row>.cells>.cell span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lc-datatableinfinite>.header>.row>.cells>.cell i {
    font-size: 0.65rem;
    color: #2E1956;
    flex-shrink: 0;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.sortable {
    cursor: pointer;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.sortable:hover {
    color: #2E1956;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.sortable:hover i {
    color: #471FCC;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.sorted {
    color: #2E1956;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.sorted i {
    color: #2E1956;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.left {
    justify-content: flex-start;
    text-align: start;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.center {
    justify-content: center;
    text-align: center;
}

.lc-datatableinfinite>.header>.row>.cells>.cell.right {
    justify-content: flex-end;
    text-align: end;
}

.lc-datatableinfinite>.header>.row>.functions {
    width: 28px;
}

.lc-datatableinfinite>.header>.row>.scroll {
    width: 8px;
}

.lc-datatableinfinite>.header.status {
    padding-right: 0px;
}
.lc-datatableinfinite>.header.status>.row {
    gap: 0;

}
.lc-datatableinfinite>.body {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.lc-datatableinfinite>.body::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: #eee;
}

.lc-datatableinfinite>.body::-webkit-scrollbar-thumb {
    background: #cccccf;
    border-radius: 0.25rem;
}

.lc-datatableinfinite>.body::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.lc-datatableinfinite>.body::-webkit-scrollbar-track {
    border-radius: 0.25rem;
}

.lc-datatableinfinite>.body>.row,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    gap: 0;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: #fff;
}

.lc-datatableinfinite>.body>.row>.selectable,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.selectable {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    cursor: pointer;
}

.lc-datatableinfinite>.body>.row>.cells,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells {
    display: flex;
    align-items: center;
    width: 100%;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    gap: 6px;
}

.lc-datatableinfinite>.body>.row>.cells>.cell,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell {
    font-size: .8rem;
    color: #2E1956;
    display: flex;
    padding: 0;
    min-width: 0;
    overflow: hidden;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.left,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.left {
    justify-content: flex-start;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.right,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.right {
    justify-content: flex-end;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.center,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.center {
    justify-content: center;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.between,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.between {
    justify-content: space-between;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.tiny,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.tiny {
    font-size: 0.6rem;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.small,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.small {
    font-size: 0.7rem;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.medium,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.medium {
    font-size: 0.8rem;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.large,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.large {
    font-size: 1rem;
}

.lc-datatableinfinite>.body>.row>.cells>.cell.big,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.cells>.cell.big {
    font-size: 1.2rem;
}

.lc-datatableinfinite>.body>.row>.functions,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row>.functions {
    width: 28px;
}

.lc-datatableinfinite>.body>.row:hover,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row:hover {
    background-color: #eee;
}

.lc-datatableinfinite>.body>.row:hover:not(.status),
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row:hover:not(.status) {
    border-left-color: #eee !important;
}

.lc-datatableinfinite>.body>.row.clickable,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row.clickable {
    cursor: pointer;
}

.lc-datatableinfinite>.body.highdensity>.row,
.lc-datatableinfinite>.body.highdensity>.lc-accordion.visible>.body>.row {
    min-height: 28px;
    margin-bottom: 1px;
}

.lc-datatableinfinite>.body.mediumdensity>.row,
.lc-datatableinfinite>.body.mediumdensity>.lc-accordion.visible>.body>.row {
    min-height: 38px;
    margin-bottom: 4px;
}

.lc-datatableinfinite>.body.lowdensity>.row,
.lc-datatableinfinite>.body.lowdensity>.lc-accordion.visible>.body>.row {
    min-height: 80px;
    margin-bottom: 4px;
}

.lc-datatableinfinite>.body>.loader {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.lc-datatableinfinite>.body>.nodatamessage {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-datatableinfinite.debug>.header {
    background-color: orange;
}

.lc-datatableinfinite.debug>.header>.cells>.cell:nth-child(even) {
    background-color: blue;
}

.lc-datatableinfinite.debug>.header>.cells>.cell:nth-child(odd) {
    background-color: green;
}

.lc-datatableinfinite.debug>.header>.scroll {
    background-color: red;
}

.lc-datatableinfinite.debug>.body .row {
    background-color: orangered;
}

.lc-datatableinfinite.debug>.body .row>.cells>.cell:nth-child(even) {
    background-color: blue;
}

.lc-datatableinfinite.debug>.body .row>.cells>.cell:nth-child(odd) {
    background-color: green;
}


.lc-datatableinfinite .lc-tooltip:has(.color-status) {
    min-height: inherit;
}

.lc-datatableinfinite .color-status {
    height: 100%;
    width: 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    position: absolute;
    top: 0px;
    left: 0;
}


.lc-datatableinfinite:has(.color-status) .cells {
    margin-left: 10px;
}

.lc-datatableinfinite .lc-accordion.visible>.body {
    overflow: visible;
}


.lc-datatableinfinite .lc-tooltip:has(.color-status)>.body>.arrow {
    transform: translate(0px, 18px) rotate(45deg);
}

.lc-datatableinfinite .lc-tooltip:has(.color-status)>.body {
    left: 12px;
    top: -7px;
}

.lc-datatableinfinite .lc-tooltip:has(.color-status)>.body.left>.content {
    padding: 5px 16px !important;
}

.lc-datatableinfinite .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-wrap: wrap;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow-wrap: break-word;
}

.lc-datatableinfinite>.body>.row:has(.functions)>.cells,
.lc-datatableinfinite>.body>.lc-accordion.visible>.body>.row:has(.functions)>.cells {
    width: calc(100% - 28px);
    /* flex: none; */
}

.lc-datatableinfinite .expandable-cell .expandable.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lc-datatableinfinite .expandable-cell:has(.expanded) {
    padding: 6px 0;
}

.lc-datatableinfinite .expandable-cell .expandable.expanded {
    display: block;
}

.lc-datatableinfinite .expandable-cell .expand-button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0 0 0;
    display: inline-block;
}
.lc-input {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--text-default);
}
.lc-input .label {
  color: var(--text-default);
  font-size: 0.75rem;
  line-height: 1rem;
}
.lc-input .field {
  padding-top: 5px;
  display: flex;
  align-items: center;
}
.lc-input .field input,
.lc-input .field select {
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 4px 8px 4px 8px;
  font-size: 14px;
  background-color: #fff;
  color: var(--text-default);
  overflow: hidden;
}
.lc-input .field input.required,
.lc-input .field select.required {
  border-left: 4px solid;
  border-left-color: var(--color-secondary-lime);
  border-radius: 4px;
  border-bottom: none;
  border-right: none;
  border-top: none;
}
.lc-input .field input.bordersOff,
.lc-input .field select.bordersOff {
  border: none;
}
.lc-input .field input:-webkit-autofill,
.lc-input .field select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}
.lc-input .field input:hover,
.lc-input .field select:hover {
  background-color: #fafafa;
}
.lc-input .field.multi select {
  height: 150px;
  overflow: scroll;
}
.lc-input .field .lci {
  font-size: 1.5rem;
  position: absolute;
  right: 0.5rem;
}
.lc-input .field .invalid {
  border: 1px solid var(--status-red);
}
.lc-input .field.icon > input, .lc-input .field.icon > select {
  padding: 4px 40px 4px 8px;
}

input[type="file"] {
  background-color: #EAEEF6;
  display: none;
}

span.spanNameFile {
  font-size: 12px;
  color: var(--primary);
  
}

span.MuiSlider-markLabel {
  font-size: 11px !important;
  color: var(--text-default);
}

.MuiSlider-valueLabelOpen.MuiSlider-valueLabel {
  background-color: var(--background-light) ;
  color: var(--text-default);
  border-radius: 10px;
}

.PPSlider > .MuiSlider-root {
  margin-bottom: 10px !important;
}
.lc-tooltip {
  display: inline-block;
  width: inherit;
  height: fit-content;
  position: relative;
}

.lc-tooltip>.body,
.lc-tooltip-portal {
  position: fixed;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0px 0px 3px rgba(32, 47, 47, 0.36));
  z-index: 1000001;
  overflow: visible;
}

.lc-tooltip>.body>.arrow,
.lc-tooltip-portal > .arrow {
  align-self: center;
  width: 10px;
  height: 10px;
  background-color: #e2e6f3;
  transform: rotate(45deg) translate(5px, 5px);
}

.lc-tooltip>.body .content,
.lc-tooltip-portal .content {
  align-self: center;
  width: max-content;
  max-width: 220px;
  height: auto;
  background-color: #e2e6f3;
  border: 0;
  border-radius: 4px;
  padding: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-default);
  font-family: "Ubuntu", sans-serif;
  pointer-events: auto;
  -webkit-user-select: text;
  user-select: text;
}

.lc-tooltip>.body .content a,
.lc-tooltip-portal .content a,
.lc-tooltip>.body .content button,
.lc-tooltip-portal .content button,
.lc-tooltip>.body .content [role="button"],
.lc-tooltip-portal .content [role="button"] {
  cursor: pointer;
  pointer-events: auto;
}



.lc-tooltip>.body.left>.content,
.lc-tooltip-portal.left > .content {
  align-self: flex-start;
}

.lc-tooltip>.body.center>.content,
.lc-tooltip-portal.center > .content {
  align-self: center;
}

.lc-tooltip>.body.right>.content,
.lc-tooltip-portal.right > .content {
  align-self: flex-end;
}

.lc-tooltip>.body.fullright>.content,
.lc-tooltip-portal.fullright > .content {
  align-self: flex-end;
  transform: translate(10px, 0px);
}

.lc-tooltip.top .body,
.lc-tooltip-portal.top {
  flex-direction: column-reverse;
  transform: translateY(-100%);
}

.lc-tooltip.top .body>.arrow,
.lc-tooltip-portal.top > .arrow {
  transform: rotate(45deg) translate(-5px, -5px);
}
.input-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 5px;
}
.input-checkbox > .lci {
  font-size: 1.25rem;
}
.input-checkbox > .lci.lci-checkbox {
  color: #cccccf;
}
.input-checkbox > .lci.lci-checkbox-on {
  color: var(--color-secondary-lime) !important;
}
.input-checkbox > .title {
  font-size: 0.875rem;
  color: var(--text-default);
}
.lc-accordion {
  overflow: visible;
}
.lc-accordion.accordionBackground {
  background-color: #fff;
  margin-top: 5px;
}
/* .lc-accordion > .header > .chevron {
  transform: rotate(-90deg);
}
.lc-accordion.visible > .header > .chevron {
  transform: rotate(0deg);
} */
.lc-accordion > .header {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-default);
  cursor: pointer;
}
.lc-accordion > .header.fontSize {
  padding: 5px 0px 5px 0px;
  font-size: 1.3rem;
}
.lc-accordion > .header > .chevron {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  overflow: visible;
}
.lc-accordion > .header > .chevron.rotate {
  transform: rotate(-90deg);
}
.lc-accordion.visible > .header > .chevron.rotate {
  transform: rotate(0deg);
}
.lc-accordion > .header > .chevron.rotate {
  transition: transform 0.25s ease-in-out;

}
/* .lc-accordion > .header > .chevron:hover {
  font-size: 1.5rem;
} */
.lc-accordion > .header > .title {
  display: flex;
  align-items: inherit;
  padding-left: 0.8rem;
  width: 100%;
}
.lc-accordion > .body {
  margin-left: 20px;
  height: auto;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.lc-accordion > .body.collapsed {
  max-height: 0;
}
.lc-dropdown {
  display: inline-block;
  position: relative;
  width: fit-content;
  height: fit-content;
}
.lc-dropdown > .element {
  cursor: pointer;
}
.lc-dropdown > .body {
  width: 0;
  height: 0;
  position: absolute;
  overflow: visible;
  z-index: 99999;
}
.lc-dropdown > .body > .content {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: max-content;
  min-width: 180px;
  height: fit-content;
  background-color: #fff;
  border: 1px solid #cccccf;
  padding: 12px;
  box-shadow: 0px 0px 18px rgba(58, 79, 135, 0.3);
  z-index: 9999;
}
.lc-dropdown > .body > .content > .item,
.lc-dropdown > .body > .content > div .item {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-default) !important;
  cursor: pointer;
}
.lc-dropdown > .body > .content > .item.disabled,
.lc-dropdown > .body > .content > div .item.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.lc-dropdown > .body > .content > .item:hover,
.lc-dropdown > .body > .content > div .item:hover {
  background-color: #eee;
}
.lc-dropdown > .body > .content > hr {
  margin: 8px 10px;
}

.lc-dropdown > .body.left {
  left: 0;
}
.lc-dropdown > .body.center {
  left: 50%;
}
.lc-dropdown > .body.right {
  right: 0;
}
.lc-iconlink {
    width: 30px;
    height: 30px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    position: relative;
}

    .lc-iconlink.filtered {
        color: var(--color-secondary-lime);
    }

    .lc-iconlink.unfiltered {
        color: var(--text-default);
    }

    .lc-iconlink.small {
        width: 28px;
        height: 28px;
        border-radius: 14px;
        font-size: 20px;
    }

    .lc-iconlink.big {
        width: 42px;
        height: 42px;
        border-radius: 21px;
        font-size: 26px;
    }

    .lc-iconlink > .content {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .lc-iconlink > .content > .badge {
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            width: fit-content;
            min-width: 19px;
            height: 14px;
            padding: 0 2px;
            border-radius: 7px;
            top: -5px;
            left: 18px;
            right: 0;
        }

            .lc-iconlink > .content > .badge > span {
                font-size: 10px;
                font-weight: bold;
            }

    .lc-iconlink > .tooltip {
        visibility: hidden;
        width: inherit;
        position: absolute;
        z-index: 9999;
    }

        .lc-iconlink > .tooltip.delay {
            transition-delay: 0.5s;
            transition-property: visibility;
        }

        .lc-iconlink > .tooltip > .body {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transform: translateY(38px);
            filter: drop-shadow(0px 0px 3px rgba(32, 47, 47, 0.36));
        }

            .lc-iconlink > .tooltip > .body.inline-left {
                transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, -1, 0, 1, 0, -35, -5, 0, 1);
            }

            .lc-iconlink > .tooltip > .body.inline-right {
                transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, -1, 0, 1, 0, 200, -5, 0, 1);
            }
            .lc-iconlink > .tooltip > .body:has(.super-info) {
                transform: translateY(86px);
            }


            .lc-iconlink > .tooltip > .body > .arrow {
                z-index: 7501;
                align-self: center;
                width: 10px;
                height: 10px;
                background-color: var(--background-lightest);
                transform: rotate(45deg) translate(5px, 5px);
            }

                .lc-iconlink > .tooltip > .body > .arrow.inline-left {
                    transform: rotate(50deg) translate(20px, 0px);
                }
                .lc-iconlink > .tooltip > .body > .arrow.inline-right {
                    transform: rotate(50deg) translate(-95px, 133px);
                }

            .lc-iconlink > .tooltip > .body .content {
                align-self: center;
                z-index: 7500;
                width: max-content;
                max-width: 350px;
                height: auto;
                background-color: var(--background-lightest);
                border: 0;
                border-radius: 4px;
                padding: 8px 12px;
                font-size: 11px;
                font-weight: 400;
                color: var(--text-default);
            }

                .lc-iconlink > .tooltip > .body .content.left {
                    align-self: flex-start;
                }

                .lc-iconlink > .tooltip > .body .content.right {
                    align-self: flex-end;
                }

                .lc-iconlink > .tooltip > .body .content.inline-left {
                    align-self: flex-end;
                    padding: 5px 16px;
                }
                .lc-iconlink > .tooltip > .body .content.inline-right {
                    align-self: flex-end;
                    padding: 5px 16px;
                }

    .lc-iconlink:hover {
        background-color: #F0F3FF;
    }

        .lc-iconlink:has(.lci-checkbox):hover {
            background-color: transparent;
        }

        .lc-iconlink:hover .tooltip {
            visibility: visible;
        }

    .lc-iconlink:not(:hover) .tooltip {
        visibility: hidden;
        transition-delay: 0s;
        transition-delay: initial;
    }

    .lc-iconlink.disabled {
        color: #666;
        cursor: not-allowed;
    }
    .lc-iconlink.notALink {
        cursor: auto;
    }

        .lc-iconlink.disabled:hover {
            background-color: #eee;
        }
        .lc-iconlink.notHover:hover {
            background-color: transparent;
            cursor: pointer;
        }

    .lc-iconlink.debug {
        background-color: red;
    }

        .lc-iconlink.debug > .content {
            background-color: blue;
        }

        .lc-iconlink.debug > .tooltip {
            background-color: green;
        }
    .lc-iconlink >.content > i.degrade {
        font-size: 30px; 
        background-image: linear-gradient(191.87deg, #75F9FB 6.38%, rgb(117, 249, 69) 92.76%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-color: red;
        
    }

    
    .lc-iconlink.pulse {
        box-shadow: 0 0 0 rgba(255,0,0, 0.6);
        animation: pulse-red 2s infinite;
        border-radius: 50%;
        
    }

    .lc-iconlink.pulse:hover {                
        animation: none; 
    }

    .AiMenu:has(.pp-dropmenu) .lc-iconlink {
        animation: none; 
    }

    .fields:has(.allAI.open) .lc-iconlink {
        animation: none;
    }
      @keyframes pulse-red {
        0% {
          box-shadow: 0 0 0 0 rgba(255,0,0, 0.6);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(255,0,0, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(255,0,0, 0);
        }
      }

@keyframes append {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lcd-confirmation > .all {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6000;
  background-color: rgba(0, 0, 0, 0.5);
  animation: append 0.2s linear;
}
.lcd-confirmation > .all > .body {
  /* background-color: #e2e6f3; */
  background-color: #fff;
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.25);
  padding: 15px;
  min-width: 300px;
  max-width: 500px;
  color: var(--text-default);
}
.lcd-confirmation > .all > .body > .title {
  font-size: 26px;
  margin-bottom: 30px;
  padding: 0px 15px;
  font-weight: 200;
  display: flex;
  justify-content: space-between;
}
.lcd-confirmation > .all > .body > .text {
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 400;
  padding: 0px 15px;
  text-align: justify;
}
.lcd-confirmation > .all > .body > .actions {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
.lcd-confirmation > .all > .body > .actions > *:not(:last-child) {
  margin-right: 24px;
}


/* .lcd-confirmation .actions .bg-gray {
    display: none;
} */

.lcd-confirmation>.all>.body>.actions.one-button {
    justify-content: center !important;
}

.lcd-confirmation>.all>.body>.title .lc-iconlink {
    display: none;
}
.lc-vote {
  margin-bottom: 30px;
  width: 100%;
}

.lc-vote>.question {
  font-size: 20px;
  margin: 0 0 16px 0;
  text-align: center;
  color: var(--text-default);
}

.lc-vote>.options-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.lc-vote>.options-container>.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 4px;
  padding: 0 2px;
}

.lc-vote>.options-container>.options>.option {
  flex: 1 1;
  aspect-ratio: 1 / 1;
  max-width: calc(2rem + 2vw);
  border-radius: 50%;
  font-size: calc(0.5rem + 0.5vw);

  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border: 3px solid transparent;
  text-align: center;

  box-shadow: none;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.lc-vote>.options-container>.options>.option.active {
  transform: scale(1.1);
  border-color: transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 8px;
}


.lc-vote>.texts {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: calc(0.6rem + 0.3vw);
  width: 100%;
}

.lc-vote>.texts>.less-text,
.lc-vote>.texts>.more-text {
  color: var(--text-default);
  max-width: 35%;
  word-wrap: break-word;
}

.lc-vote>.texts>.less-text {
  text-align: left;
}

.lc-vote>.texts>.more-text {
  text-align: right;
}
.input-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 0.65rem;
  margin-top: 0.15rem;
}

.input-toggle>.box {
  width: 32px;
  height: 16px;
  padding: 3px;
  border-radius: 10px;
  background-color: #eee;
}

.input-toggle>.box>.dot {
  width: 10px;
  height: 10px;
  border-radius: 7px;
  background-color: var(--text-light);
  transition: all 0.2s ease;
}

.input-toggle.toggled>.box {
  background-color: var(--color-secondary-lime) !important;
}

.input-toggle.toggled.switch>.box {
  background-color: #eee !important;
}

.input-toggle.toggled>.box>.dot {
  margin-left: 16px;
}

.input-toggle>.title {
  margin-left: 7px;
  margin-bottom: 3px;
  font-size: 0.835rem;
  color: #2E1956;
  font-family: "Ubuntu", sans-serif;
}
.lcdashboard {
    min-height: calc(100%);
    max-height: calc(100vh - 104px);
    display: grid;
    /*grid-template-columns: repeat(12, 1fr );*/
    grid-template-rows: 1fr;
    grid-gap: 0px;
    position: relative;
}


.overflow-hidden .lcdashboard.isHomeType {
    min-height: calc(100% + 48px);
    max-height: calc(100% + 48px);
}

.overflow-hidden .lcdashboard.isHomeType .right-sidepanel {
    grid-column-start: 1 !important;
    display: block;
    margin-left: -0.8rem !important;
}


.overflow-hidden .lcdashboard.isHomeType .right-sidepanel .cell {
    width: 100% !important;
}


.lcdashboard.isHomeType {
    min-height: calc(100vh - 133px);
    max-height: calc(100vh - 133px);
    width: 100%;
}

.lcdashboard.isSubGrid {
    min-height: 100% !important;
    max-height: 100% !important;
    display: flex;
}

.lcdashboard.isSubGrid .lcdashboard-cards .lcdashboard-cards-panel {
    display: flex;
}

.lcdashboard.isSubGrid .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-body {
    display: flex;
    min-height: 100%;
    flex-wrap: wrap;
}

.lcdashboard.isSubGrid .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-body .card-frame {
    width: calc(50% - 16px);
    flex: 1 1;
}

.lcdashboard.isSubGrid .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-body {
    gap: 0.75rem;
}

.no-padding {
    padding: 0 !important;
}

.overflow-hidden {
    overflow: hidden;
}

/*.lcdashboard .chart-treemap > div {
        cursor: grab;
    }

    .lcdashboard .chart-treemap path:hover, .lcdashboard .chart-treemap text:hover {
        cursor: zoom-in !important;
    }*/





.lcdashboard .automation-resource-home {
    color: var(--color-primary-blue);
    font-weight: 400 !important;
    font-size: 14px;
}

.lcdashboard .automation-resource {
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    max-width: 160px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lcdashboard .automation-name-home {
    color: var(--text-default);
    font-size: 12px;
}

.lcdashboard .automation-name {
    color: #fff;
    font-size: 12px;
}

.lcdashboard .automation-schedule {
    color: #fff;
    font-size: 12px;
}

.lcdashboard .title-schedule {
    color: var(--text-dark);
    font-family: "Ubuntu", sans-serif;
    font-size: .9rem;
    /*font-size: 2.3vh; */
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    min-width: 60px;
}

.lcdashboard .lcdashboard-cards {
    min-height: calc(100%);
    max-height: calc(100%);
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}

.lcdashboard .lcdashboard-cards .lcdashboard-cards-panel {
    min-height: calc(100%);
    max-height: calc(100%);
    display: grid;
    grid-template-columns: 1fr;
    /*grid-template-rows: repeat(12, 1fr );*/
    grid-gap: 0px;
    padding: 0;
}


.lcdashboard .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-header {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: span 1;
}



.lcdashboard .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-body {
    min-height: calc(100%);
    max-height: calc(100%);
    display: grid;
    /*grid-template-columns: repeat(12, 1fr );
                grid-template-rows: repeat(4, 1fr );*/
    grid-gap: 0.75rem;
}

@keyframes cardFadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes cardFocused {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cardUnfocused {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.lcdashboard .card-frame:not(.focused):hover {
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.2);
}

.lcdashboard.isHomeType .card-frame:hover,
.lcdashboard .card-frame.small-card:hover,
.lcdashboard .card-frame.small-card {
    box-shadow: none;
}
.lcdashboard .card-frame.no-header.notHover {
    box-shadow: none !important;

}
.lcdashboard .card-frame {
    display: flex;
    background-color: #fff;
    border-radius: 0.25rem;
    padding: 0.75rem;
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.06);
    flex-direction: column;
    justify-content: space-between;
}

.lcdashboard .card-frame.small-card {
    padding: 0.5rem 0.75rem;
}


.lcdashboard.isHomeType .card-frame.small-card {
    padding: 0.4rem !important;
}

.card-frame.no-header {
    justify-content: space-around;
}

.card-frame.fix-card-content {
    justify-content: space-between;
}

.lcdashboard.isHomeType .card-frame {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.lcdashboard .card-frame.card-focused {
    z-index: 2;
    animation: cardFocused 0.5s forwards;
}

.lcdashboard .card-frame.card-hidden {
    pointer-events: none;
    animation: cardFadeOut 0.5s forwards;
}


.card-fade {
    opacity: .3;
    animation: none !important;
}

.card-active {
    opacity: 1;
    animation: none !important;
}

.lcdashboard .card-frame.card-reappearing {
    animation: cardFadeIn 0.5s forwards;
}

.lcdashboard .card-frame.card-unfocusing {
    animation: cardUnfocused 0.5s forwards;
}

.lcdashboard .card-frame-header-content {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 0.5rem;
    align-self: stretch;
    flex-wrap: wrap;
}

.lcdashboard .card-title {
    display: flex;
    height: 1.6rem;
    min-width: 5.25rem;
    align-items: flex-end;
    flex: 1 0;
}

.lcdashboard .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-body .card-frame .card-frame-header-content .title,
.lcdashboard .lc-title {
    color: var(--text-dark);
    font-family: "Ubuntu", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    min-width: 60px;
}

.lcdashboard.isHomeType .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-body .card-frame .card-frame-header-content .title,
.lcdashboard.isHomeType .lc-title {
    font-size: .9rem;
}

.lcdashboard.isHomeType .card-title {
    font-size: .9rem;
}

.lcdashboard .lc-segment-title-row-resume {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.lcdashboard .lc-segment-title-row-resume .lc-buttons {
    justify-content: center;
    margin: 10px 0;
}


.lcdashboard .lc-segment-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.lcdashboard .lc-segment-buttons .lc-buttons > .active {
    background-color: var(--color-primary-blue) !important;
    color: #fff !important;
}

/*maiores consumos*/
.lcdashboard .card-frame:has(.titlefix) .card-frame-header-content {
    display: inline;
}

.lcdashboard .card-frame:has(.titlefix) .block-icons {
    justify-content: flex-end;
}

.lcdashboard .card-frame-header-content .block-icons {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

.lcdashboard .card-frame .block-icons span.icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-default);
    border-radius: 50%;
    transition: 0.3s all;
    font-size: 20px;
}

.lcdashboard .card-frame span.icon i,
.lcdashboard .card-frame span.icon svg {
    padding: 5px;
    border-radius: 100%;
}

.lcdashboard .card-frame span.icon svg {
    width: 32px;
    height: 32px;
}

.lcdashboard .card-frame .block-icons span.icon>:not(.lc-iconlink):hover {
    background: var(--background-light);
    color: var(--icon-default);
    cursor: pointer;
}

.lcdashboard .card-content-body {
    max-height: calc(100% - 20px);
    min-height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
}

.lcdashboard .card-frame .centered {
    justify-content: center;
}

.lcdashboard .card-frame .fromStart {
    justify-content: flex-start;
}

.lcdashboard .card-content-body-home {
    max-height: calc(100% - 24px);
    min-height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lcdashboard .card-content-body:has(.titlefix) {
    justify-content: flex-start;
}


.lcdashboard .card-content-body-content {
    display: contents;
}

.lcdashboard .card-content-body:has(.titlefix) {
    max-height: calc(100% - 30px);
    min-height: calc(100% - 30px);
}

.lcdashboard .lcdashboard-cards .lcdashboard-cards-panel .lcdashboard-cards-panel-footer {
    min-height: calc(100%);
    max-height: calc(100%);
    grid-column-start: 1;
    grid-column-end: 1;
    /*grid-row-start: 12;*/
    grid-row-end: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lcdashboard .pp-dropdown .icons .ppi-x {
    display: none;
}

.lcdashboard .right-sidepanel {
    background: #fafafa;
    box-shadow: -10px 0 18px 0px rgba(58, 79, 135, 0.15);
    max-height: calc(100% + 1.5rem);
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 1;
    z-index: 9;
    width: 25%;
    padding: 1rem;
    margin-top: -0.75rem;
    transition: all 0.2s ease-in-out;
}

/* Quando NAO esta fixado (pinned=false): overlay sobre o conteudo */
.lcdashboard .right-sidepanel:not(.pinned) {
    position: fixed;
    right: 0;
    top: 0;
    margin-top: 0;
    height: 100%;
    z-index: 9;
}

/* Quando em modo foco (focused) e NAO fixado: absolute dentro do dashboard */
.lcdashboard .right-sidepanel.focused:not(.pinned) {
    position: absolute;
    right: auto;
    right: initial;
    top: auto;
    top: initial;
    left: 0;
    margin-top: 0;
    width: 100%;
    height: calc(100vh - 80px);
    z-index: 9;
}

/* Quando esta fixado (pinned=true): inline no grid */
.lcdashboard .right-sidepanel.pinned {
    position: relative;
    right: auto;
    right: initial;
    top: auto;
    top: initial;
    height: auto;
}

    .lcdashboard .right-sidepanel .title-sidebar {
        color: var(--text-dark);
        font-family: "Ubuntu", sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 300;
        line-height: 160%;
    }


.lcdashboard .right-sidepanel .right-sidepanel-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lcdashboard .right-sidepanel .title-sidebar-content {
    display: flex;
    justify-content: space-between;
}

.lcdashboard .right-sidepanel .title-icons {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

/* .lcdashboard .right-sidepanel .title-icons span, .icons-filter {
            color: #2E1956;
            transition: 0.3s all;
            display: flex;
            justify-content: center;
            align-content: center;
            align-items: center;
            padding: 0.5rem;
            /* width: 36px;
            height: 36px;
            border-radius: 50%; */
/* } */

/* .lcdashboard .right-sidepanel .title-icons span:hover, .icons-filter:hover {
                background: #cccccf;
            } */

.lcdashboard .right-sidepanel .filter-content {
    display: flex;
    flex-direction: column;
}

.lcdashboard .right-sidepanel .filter-content .right-sidepanel-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    height: calc(100vh - 180px);
}

.lcdashboard .right-sidepanel .filter-content .right-sidepanel-filters .principal-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 260px);
    padding-right: 0.25rem;
}

/* Scroll sem borda visivel */
.lcdashboard .right-sidepanel .filter-content .right-sidepanel-filters .principal-filters::-webkit-scrollbar {
    width: 4px;
}

.lcdashboard .right-sidepanel .filter-content .right-sidepanel-filters .principal-filters::-webkit-scrollbar-track {
    background: transparent;
}

.lcdashboard .right-sidepanel .filter-content .right-sidepanel-filters .principal-filters::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.lcdashboard .right-sidepanel .filter-content .right-sidepanel-filters .principal-filters::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

    .lcdashboard .right-sidepanel .advanced-filters {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 100px !important;
    }

.lcdashboard .right-sidepanel .advanced-filters .title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-default);
    margin-bottom: 0.5rem;
}

.lcdashboard .right-sidepanel .advanced-filters .advanced-filters-content {
    /* min-height: calc(100vh - 474px); */
    /* max-height: calc(100vh - 474px); */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 54vh;
    max-height: 54vh;
}

.lcdashboard .right-sidepanel .advanced-filters .filter-condition {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.filter-condition>.MuiBox-root>.MuiGrid-container>.MuiGrid-root>.pp-tooltip>.termfield>.MuiInputBase-root.MuiOutlinedInput-root.MuiInputBase-fullWidth.MuiInputBase-formControl.MuiInputBase-marginDense.MuiOutlinedInput-marginDense {
    height: 27px;
    margin-top: 0px;
    width: 8vw;
}

.filter-condition>.MuiBox-root>.MuiGrid-container>.MuiGrid-root>.pp-tooltip>.termfield>.MuiInputBase-root.MuiOutlinedInput-root.MuiInputBase-fullWidth.MuiInputBase-formControl.MuiInputBase-marginDense.MuiOutlinedInput-marginDense>input {
    padding: 4px
}

.filter-condition>.MuiBox-root>.MuiGrid-container>.MuiGrid-root>div:nth-child(2) {
    padding: 5px;
    max-height: 20vh;
    max-width: 13.5vw;
    min-width: 13.5vw;
    display: flex;

}

.filter-condition>.MuiBox-root>.MuiGrid-container>.MuiGrid-root>div:nth-child(2)>.loading {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-width: 10vw;
    font-size: 12px;
}

.MuiGrid-root>div:nth-child(2)::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: #eee;
    z-index: 99;
}

.MuiGrid-root>div:nth-child(2)::-webkit-scrollbar-thumb {
    background: #cccccf;
    border-radius: 0.25rem;
}

.MuiGrid-root>div:nth-child(2)::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.MuiGrid-root>div:nth-child(2)::-webkit-scrollbar-track {
    border-radius: 0.25rem;
}

.filter-condition>.MuiBox-root>.MuiGrid-container>.MuiGrid-root>div:nth-child(2)>.sugestion {
    font-size: 10px !important;
}

.lcdashboard .cell-descricao {
    min-width: 60px;
}

.lcdashboard .big-numbers-icons {
    width: 2.2vw;
    height: 2.2vw;
}

.lcdashboard .card-big-number {
    display: flex;
    flex-direction: column;
}

.lcdashboard .card-big-number>.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lcdashboard .card-big-number.colorfull {
    color: #fff;
}

.lcdashboard .table-card {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    color: var(--text-default);
    height: calc(100vh - 180px);
}


.lcdashboard .big-number-content {
    min-width: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    /*min-height: 100%;*/
}

.lcdashboard .big-number-content {
    font-size: 2vw;
}

.lcdashboard .big-number-value {
    font-size: 2vw;
}

.lcdashboard .lc-subtitle {
    font-size: 75%;
    color: #2E1956;
    text-align: center
}


.lcdashboard .inner-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    height: 100%;
}


.page:has(.card-focused) {
    overflow-y: hidden !important;
}

.lcdashboard .chart-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    
}

.lcdashboard .chart-content {
    flex: 1 1;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1500px) {
    .lcdashboard .right-sidepanel .advanced-filters .advanced-filters-content {
        gap: 0.5rem;
        min-height: 46vh;
        max-height: 46vh;
    }
}
.pp-expand {
  background-color: transparent;
  display: block;
  position: relative;
}
.pp-expand.mb-5 {
  margin-bottom: 5px;
}
.pp-expand.mb-10 {
  margin-bottom: 10px;
}
.pp-expand.mb-15 {
  margin-bottom: 15px;
}
.pp-expand > .header {
  display: flex;
  justify-content: space-between;
}
.pp-expand > .header.hover:hover {
  background-color: #ececec;
}
.pp-expand > .header .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-default);
  -webkit-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
}
.pp-expand > .header .title .ppi {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: all 0.5s;
}
.pp-expand > .header .title:not(.disabled):hover {
  color: var(--color-primary-blue);
  cursor: pointer;
}
.pp-expand > .header:not(.disabled):hover {
  cursor: pointer;
}
.pp-expand > .header > .functions {
  display: flex;
  align-items: center;
}
.pp-expand > .body {
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
  height: 0;
}
.pp-expand > .body.expanded {
  overflow: visible;
  opacity: 1;
  height: auto;
}
.pp-expand.expanded > .header > .title > .ppi {
  transform: rotate(180deg);
}
.filter-panel-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    position: relative;
    overflow: visible;
  }
  .ppdropdown > label {
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 4px;
}
  .filter-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: visible;
  }

  /* Ensure proper positioning for right-sidepanel-filters */
  .right-sidepanel-filters {
    position: relative;
  }

  .right-sidepanel-filters .principal-filters {
    position: relative;
  }

  .filter-field {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .input-field input,
  .filter-field select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
  }

  /* button {
    margin-top: 10px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
  }
  button:hover {
    background-color: #0056b3;
  } */
  .filtered-results {
    margin-top: 20px;
    white-space: pre-wrap; /* This ensures the JSON output wraps properly */
  }

@keyframes dragging-bg {
  from {
    background-position: 0;
  }
  to {
    background-position: 28px;
  }
}
.pp-inputfile > .body> .title {
  font-family: "Ubuntu", sans-serif;
  color: var(--text-default);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}
.pp-inputfile > .body {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: default;
  border: 3px dotted #B8CCEA;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 60px;
  cursor: pointer;
  display: flex;
  outline: none;
  text-align: center;
}

.pp-inputfile > .body > input {
  display: none;
}
.pp-inputfile > .body.dragging {
  background: repeating-linear-gradient(45deg, #eee, #eee 10px, #ddd 10px, #ddd 20px);
  animation: dragging-bg 0.6s linear infinite;
}
.pp-inputfile > .body > .files {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  height: fit-content;
  gap: 4px;
}
.pp-inputfile > .body > .files > .file {
  width: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pp-inputfile > .body > .files > .file > .pp-tooltip > img {
  height: 50px;
}
.pp-inputfile > .body > .msg {
  font-size: 12px;
}
/* .pp-tooltip {
    width: calc(100% - 40px) !important;
} */

.pp-inputfile > .body > .iconUpload {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pp-inputfile > .body > .iconUpload > #uploadIcon {
  font-size: 48px;
  color: #B8CCEA;
}

.pp-inputfile > .body > .iconUpload {
  width: 90px;
  height: 90px;
  margin-top: 10px;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background-color: #FAFAFA;
}

.pp-inputfile > .body > .iconUpload > #uploadIcon {
  font-size: 21.01px;
  color: #141b4d;
}

.pp-inputfile > .body > button {
  margin-top: 50px;
  padding: 10px;
  font-size: 12px;
}
.lc-checklist {
  position: relative;
  border-radius: 0.3rem;
  font-size: 12px;
}
.lc-checklist > .filter {
  margin-left: 10px;
  margin-right: 1.25rem;
}


.lc-checklist.no-margin > .filter {
  margin-left: 0px;
  margin-right: 1.25rem;
}
.lc-checklist > .filter ::placeholder {
  font-style: italic;
  color: #8b90a3;
}
.lc-checklist > .header {
  padding: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}
.lc-checklist > .header > .input-toggle,
.lc-checklist > .header > .input-checkbox {
  margin-right: 5px;
}
.lc-checklist > .header > .title {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-default);
}
.lc-checklist > .header > .title > i {
  margin-left: 0.5rem;
}
.lc-checklist > .list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.lc-checklist.no-margin > .list {
  height: calc(100vh - 260px) !important;
}

.lc-checklist > .list > .item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 0.25rem;
  background-color: #fff;
  margin-bottom: 3px;
  color: #0580ce;
}
.lc-checklist > .list > .item > .input-toggle,
.lc-checklist > .list > .item > .input-checkbox {
  margin: 0 10px 0 0;
}
.lc-checklist > .list > .item:nth-child(even) {
  background-color: transparent;
}
.lc-checklist > .list > .item:hover {
  background-color: var(--background-lightest);
}
.lc-checklist > .list > .item > label {
  font-size: 1rem;
}
.treeView {
  list-style: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-default);
}
.treeView a {
  text-decoration: none;
}
.treeView ul li {
  padding-left: 2.5rem;
}
/* AlertContactsPanel.css */

.alert-contacts-panel {
    padding: 0;
    height: auto;
}

.add-contact-section {
    margin-bottom: 24px;
}

.add-contact-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: end;
    margin-bottom: 12px;
}

.save-all-section {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.contacts-list-section h4 {
    font-size: 16px;
    font-weight: 600;
}

.contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    background-color: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--background-hover);
}

.view-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1;
}

.contact-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-default);
}

.contact-email {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-actions {
    display: flex;
    justify-content: flex-start;
    width: 15%;
}

.contact-actions-edit {
    display: flex;
    gap: 5px;
    width: 15%;
    opacity: 1;
}

.edit-contact {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    align-items: end;
}

.pp-table > .header {
  display: flex;
  margin: 0;
  padding: 5px 0px;
  width: 100%;
  display: flex;
  border-left: 5px solid #fff;
}
.pp-table > .header > .cells {
  display: flex;
  width: 100%;
}
.pp-table > .header > .cells > .cell {
  font-family: "Ubuntu", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.pp-table > .header > .cells > .cell.sortable {
  cursor: pointer;
}
.pp-table > .header > .cells > .cell.sortable:hover {
  background-color: #eee;
}
.pp-table > .header > .cells > .cell.left {
  justify-content: flex-start;
  text-align: start;
}
.pp-table > .header > .cells > .cell.center {
  justify-content: center;
  text-align: center;
}
.pp-table > .header > .cells > .cell.right {
  justify-content: flex-end;
  text-align: end;
}
.pp-table > .header > .functions {
  width: 28px;
}
.pp-table > .header > .scroll {
  width: 8px;
}
.pp-table > .body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.pp-table > .body::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: #eee;
}
.pp-table > .body::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 0.25rem;
}
.pp-table > .body::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.pp-table > .body::-webkit-scrollbar-track {
  border-radius: 0.25rem;
}
.pp-table > .body > .row {
  display: flex;
  background-color: #fff;
  border-radius: 5px;
  gap: 0;
  border-left-width: 5px;
  border-left-style: solid;
  border-left-color: #fff;
}
.pp-table > .body > .row > .selectable {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  cursor: pointer;
}
.pp-table > .body > .row > .cells {
  display: flex;
  align-items: center;
  width: 100%;
}
.pp-table > .body > .row > .cells > .cell {
  font-size: 14px;
  color: #2E1956;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 3px;
}
.pp-table > .body > .row > .cells > .cell.left {
  justify-content: flex-start;
}
.pp-table > .body > .row > .cells > .cell.right {
  justify-content: flex-end;
}
.pp-table > .body > .row > .cells > .cell.center {
  justify-content: center;
}
.pp-table > .body > .row > .cells > .cell.between {
  justify-content: space-between;
}
.pp-table > .body > .row > .cells > .cell.tiny {
  font-size: 0.6rem;
}
.pp-table > .body > .row > .cells > .cell.small {
  font-size: 0.7rem;
}
.pp-table > .body > .row > .cells > .cell.medium {
  font-size: 0.8rem;
}
.pp-table > .body > .row > .cells > .cell.large {
  font-size: 1rem;
}
.pp-table > .body > .row > .cells > .cell.big {
  font-size: 1.2rem;
}
.pp-table > .body > .row > .functions {
  width: 28px;
}
.pp-table > .body > .row:hover {
  background-color: #eee;
}
.pp-table > .body > .row:hover:not(.status) {
  border-left-color: #eee !important;
}
.pp-table > .body.highdensity > .row {
  min-height: 28px;
  margin-bottom: 1px;
}
.pp-table > .body.mediumdensity > .row {
  min-height: 38px;
  margin-bottom: 4px;
}
.pp-table > .body.lowdensity > .row {
  min-height: 60px;
  margin-bottom: 4px;
}
.pp-table > .body > .loader {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.pp-table.debug > .header {
  background-color: orange;
}
.pp-table.debug > .header > .cells > .cell:nth-child(even) {
  background-color: blue;
}
.pp-table.debug > .header > .cells > .cell:nth-child(odd) {
  background-color: green;
}
.pp-table.debug > .header > .scroll {
  background-color: red;
}
.pp-table.debug > .body .row {
  background-color: orangered;
}
.pp-table.debug > .body .row > .cells > .cell:nth-child(even) {
  background-color: blue;
}
.pp-table.debug > .body .row > .cells > .cell:nth-child(odd) {
  background-color: green;
}
.lc-tabmenu {
  width: auto;
  height: 40px;
  display: flex;
  margin: 0 10px 20px 10px;
  justify-content: space-between;
}
.lc-tabmenu .items {
  display: flex;
}
.lc-tabmenu .items .item {
  padding: 0.6rem 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  color: #8b90a3;
  cursor: pointer;
}
.lc-tabmenu .items .item .tag {
  margin-top: 8px;
  width: 100%;
  height: 4px;
  border-radius: 0 0 0.375rem 0.375rem;
}
.lc-tabmenu .items .item:not(:last-child) {
  margin-right: 2.5rem;
}
.lc-tabmenu .items .item.active {
  color: #000;
}
.lc-tabmenu .items .item.active .tag {
  background-color: #ffb800;
}
.lc-tabmenu .items .item:hover {
  color: #000;
}
.lc-tabmenu .items .item:hover .tag {
  background-color: #c2c2c2;
}
.cloud-infrastructure-diagram-container {
    display: flex;
    flex-direction: column;
    background: var(--background-white);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    font-family: 'Ubuntu', sans-serif;
}

.diagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background-white);
    border-bottom: 1px solid var(--line-default);
}

.diagram-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-light);
}

.diagram-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.zoom-control-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-default);
    border-radius: 4px;
    background: var(--background-white);
    color: var(--text-default);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
}

.zoom-control-btn:hover {
    background: var(--background-light);
    border-color: var(--color-primary);
}

.zoom-control-btn:active {
    transform: scale(0.95);
}

.zoom-control-btn.reset-btn {
    width: auto;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.zoom-level {
    min-width: 50px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-default);
    font-family: 'Ubuntu', sans-serif;
}

.control-hints {
    display: flex;
    gap: 0.75rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--line-default);
}

.control-hint {
    font-size: 0.7rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Ubuntu', sans-serif;
}

.diagram-content {
    flex: 1 1;
    overflow: hidden;
    padding: 1rem;
    background: var(--background-white);
    position: relative;
    cursor: grab;
}

.diagram-content:active {
    cursor: grabbing;
}

.diagram-content.dark {
    background: var(--background-purple-dark);
}

.diagram-content.forest {
    background: var(--background-light);
}

.diagram-content.neutral {
    background: var(--background-neutral);
}

.mermaid-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    transform-origin: center center;
}

.mermaid-wrapper .mermaid,
.mermaid-wrapper > div {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center center;
}

.mermaid-wrapper svg {
    max-width: none !important;
    max-height: none !important;
    cursor: grab;
    transform-origin: center center;
}

.mermaid-wrapper svg:active {
    cursor: grabbing;
}

.diagram-footer {
    padding: 0.75rem 1rem;
    background: var(--background-light);
    border-top: 1px solid var(--line-default);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.diagram-status {
    font-size: 0.75rem;
    color: var(--status-green);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Ubuntu', sans-serif;
}

.cloud-infrastructure-diagram-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 1.25rem;
    background: var(--background-white);
    border-radius: 5px;
    border: 2px dashed var(--status-red);
    height: 100%;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    color: var(--status-red);
    text-align: center;
    max-width: 31.25rem;
}

.cloud-infrastructure-diagram-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 1.25rem;
    background: var(--background-white);
    border-radius: 5px;
    border: 2px dashed var(--line-default);
    height: 100%;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-message {
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-light);
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .diagram-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .diagram-controls {
        width: 100%;
        justify-content: space-between;
    }

    .control-hint {
        font-size: 0.6875rem;
    }

    .diagram-title {
        font-size: 0.875rem;
    }
}


.infrastructure-control-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    background: transparent;
    height: 100%;
    overflow-y: auto;
    font-family: 'Ubuntu', sans-serif;
}

.control-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Ubuntu', sans-serif;
}

.provider-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.provider-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--background-white);
    border: 1px solid var(--line-default);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-default);
    font-weight: 400;
}

.provider-button:hover:not(:disabled) {
    background: var(--menu-item-hover);
    border-color: var(--line-dark);
}

.provider-button.active {
    background: var(--button-primary-default);
    border-color: var(--button-primary-default);
    color: var(--text-default);
    font-weight: 600;
}

.provider-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--background-neutral);
}

.provider-icon {
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    padding: 0.25rem 0.375rem;
    background: var(--background-light);
    border-radius: 3px;
    min-width: 2.5rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.provider-button.active .provider-icon {
    background: var(--color-primary-purple-dark);
    color: var(--text-white);
}

.provider-label {
    flex: 1 1;
    text-align: left;
    font-weight: inherit;
}

.level-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.level-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    background: var(--background-white);
    border: 1px solid var(--line-default);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.level-option:hover {
    background: var(--menu-item-hover);
}

.level-option input[type="radio"] {
    cursor: pointer;
    accent-color: var(--color-primary-blue);
}

.level-label {
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-default);
}

.region-select {
    width: 100%;
    height: 40px;
    padding: 4px 8px;
    background: var(--background-white);
    border: 1px solid var(--line-default);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-default);
    cursor: pointer;
    transition: all 0.2s ease;
}

.region-select:hover:not(:disabled) {
    background: #fafafa;
}

.region-select:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.region-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--background-neutral);
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-default);
}

.option-checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary-blue);
}

.control-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line-default);
}

.apply-button {
    width: 100%;
    height: 40px;
    padding: 0.3rem 1.2rem;
    background: var(--button-primary-default);
    color: var(--text-default);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 135px;
}

.apply-button:hover:not(:disabled) {
    background-color: #ECEEF6;
}

.apply-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--button-disabled);
}

/* Responsividade */
@media (max-width: 768px) {
    .infrastructure-control-panel {
        gap: 0.875rem;
    }

    .provider-button {
        padding: 0.625rem 0.875rem;
        font-size: 13px;
    }

    .section-title {
        font-size: 0.6875rem;
    }
}


.aws-inventory-diagram-container {
    display: flex;
    flex-direction: column;
    background: var(--background-white);
    border-radius: 5px;
    overflow: hidden;
}

.aws-inventory-diagram-error,
.aws-inventory-diagram-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 1.25rem;
    background: var(--background-white);
    border-radius: 5px;
    text-align: center;
}

.error-icon,
.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1rem;
    color: var(--status-red);
    font-family: 'Ubuntu', sans-serif;
    max-width: 600px;
    text-align: left;
}

.error-message strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-default);
}

.error-message p {
    margin: 0.5rem 0;
    color: var(--status-red);
    font-size: 0.875rem;
}

.error-hint {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    text-align: left;
}

.error-hint p {
    margin: 0.5rem 0;
    color: var(--text-default);
    font-size: 0.875rem;
}

.error-hint strong {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.error-hint ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
    list-style-type: disc;
}

.error-hint li {
    margin: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.empty-message {
    font-size: 1rem;
    color: var(--text-light);
    font-family: 'Ubuntu', sans-serif;
}

.diagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background-white);
    border-bottom: 1px solid var(--line-default);
}

.diagram-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'Ubuntu', sans-serif;
}

.diagram-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.zoom-control-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-default);
    border-radius: 4px;
    background: var(--background-white);
    color: var(--text-default);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
}

.zoom-control-btn:hover {
    background: var(--background-light);
    border-color: var(--color-primary);
}

.zoom-control-btn:active {
    transform: scale(0.95);
}

.zoom-control-btn.reset-btn {
    width: auto;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.zoom-level {
    min-width: 50px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-default);
    font-family: 'Ubuntu', sans-serif;
}

/* Estilos dos botoes de exportacao */
.export-controls {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--line-default);
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    border: 1px solid var(--line-default);
    border-radius: 4px;
    background: var(--background-white);
    color: var(--text-default);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Ubuntu', sans-serif;
}

.export-btn:hover:not(:disabled) {
    background: var(--background-light);
}

.export-btn:active:not(:disabled) {
    transform: scale(0.97);
}

.export-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.export-png-btn:hover:not(:disabled) {
    border-color: var(--status-blue);
    color: var(--status-blue);
}

.export-pdf-btn:hover:not(:disabled) {
    border-color: var(--status-red);
    color: var(--status-red);
}

/* Mensagem de exportacao */
.export-message {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.625rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.export-message.info {
    background: var(--background-white);
    color: var(--text-default);
    border: 1px solid var(--line-default);
}

.export-message.error {
    background: #FEE2E2;
    color: var(--status-red);
    border: 1px solid var(--status-red);
}

.export-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--line-default);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.control-hints {
    display: flex;
    gap: 0.75rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--line-default);
}

.control-hint {
    font-size: 0.7rem;
    color: var(--text-light);
    font-family: 'Ubuntu', sans-serif;
}

.diagram-content {
    flex: 1 1;
    overflow: hidden;
    background: var(--background-white);
    padding: 1rem;
    cursor: grab;
    position: relative;
}

.diagram-content:active {
    cursor: grabbing;
}

.diagram-content.dark {
    background: var(--background-dark);
}

.mermaid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    height: 100%;
    width: 100%;
    transform-origin: center center;
}

.mermaid,
.mermaid-wrapper > div {
    background: transparent;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center center;
}

.mermaid-wrapper svg {
    max-width: none !important;
    max-height: none !important;
    cursor: grab;
    transform-origin: center center;
}

.mermaid-wrapper svg:active {
    cursor: grabbing;
}

.diagram-footer {
    padding: 0.75rem 1rem;
    background: var(--background-light);
    border-top: 1px solid var(--line-default);
}

.diagram-status {
    font-size: 0.75rem;
    color: var(--status-green);
    font-family: 'Ubuntu', sans-serif;
}

/* Tooltip de detalhes do no */
.node-tooltip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--background-white);
    border: 1px solid var(--line-default);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 320px;
    max-width: 450px;
    z-index: 100;
    font-family: 'Ubuntu', sans-serif;
    animation: tooltipFadeIn 0.2s ease-out;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line-default);
    background: var(--background-light);
    border-radius: 12px 12px 0 0;
}

.tooltip-type-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tooltip-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tooltip-type-badge {
    padding: 0.375rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tooltip-close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.tooltip-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-default);
}

.tooltip-content {
    padding: 1rem 1.25rem;
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f0f0f0;
    border-bottom: 1px solid var(--line-light, #f0f0f0);
}

.tooltip-row:last-child {
    border-bottom: none;
}

.tooltip-row-id {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--line-default);
    border-bottom: none;
}

.tooltip-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    min-width: 70px;
    flex-shrink: 0;
}

.tooltip-value {
    font-size: 0.875rem;
    color: var(--text-default);
    text-align: right;
    word-break: break-all;
    flex: 1 1;
    margin-left: 1rem;
}

.tooltip-value-name {
    font-weight: 600;
    color: #1a1a1a;
    color: var(--text-dark, #1a1a1a);
    font-size: 0.95rem;
}

.tooltip-value-context {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.tooltip-value-id {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--background-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.tooltip-footer {
    padding: 0.625rem 1.25rem;
    background: var(--background-light);
    border-top: 1px solid var(--line-default);
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.tooltip-hint {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
}

/* Highlight no hover dos nos */
.diagram-content svg g.node:hover {
    filter: brightness(1.1);
    cursor: pointer;
}

.diagram-content svg g.node {
    transition: filter 0.2s ease;
}

/* Icones AWS dentro dos nos do Mermaid */
.diagram-content svg g.node foreignObject {
    overflow: visible !important;
}

.diagram-content svg g.node .nodeLabel,
.diagram-content svg g.node .label {
    overflow: visible !important;
}

/* Estilo principal dos icones AWS - 40px */
.diagram-content svg .aws-node-icon,
.diagram-content svg g.node .nodeLabel img,
.diagram-content svg g.node .label img,
.diagram-content svg g.node foreignObject img,
.diagram-content svg foreignObject img,
.mermaid-wrapper svg img,
.mermaid-wrapper img.aws-node-icon,
img.aws-node-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
    margin-bottom: 4px !important;
    object-fit: contain !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
}

/* Garantir que foreignObject nao corte icones */
.diagram-content svg foreignObject {
    overflow: visible !important;
}

.diagram-content svg foreignObject > div {
    overflow: visible !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* Corrigir icones que ficam com fundo quadrado */
.diagram-content svg image {
    background: transparent !important;
}

@media (max-width: 768px) {
    .diagram-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .diagram-controls {
        width: 100%;
        justify-content: space-between;
    }

    .node-tooltip {
        position: fixed;
        top: auto;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}


.aws-inventory-control-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
    background: var(--background-white);
    border-radius: 5px;
    height: 100%;
    overflow-y: auto;
}

.control-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-actions {
    display: flex;
    gap: 0.5rem;
}

.action-button {
    padding: 0.25rem 0.5rem;
    background: var(--button-primary-default);
    color: var(--text-default);
    border: none;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.action-button:hover {
    background: var(--menu-item-hover);
}

.control-select {
    width: 100%;
    padding: 0.625rem;
    background: var(--background-white);
    color: var(--text-default);
    border: 1px solid var(--line-default);
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
}

.control-select:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 4px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-family: 'Ubuntu', sans-serif;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    color: var(--text-default);
    font-weight: 600;
}

.resource-types-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.resource-type-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--background-light);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.resource-type-item:hover {
    background: var(--menu-item-hover);
}

.resource-type-item input[type="checkbox"] {
    cursor: pointer;
}

.resource-type-name {
    flex: 1 1;
    font-size: 0.875rem;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-default);
}

.resource-type-count {
    font-size: 0.75rem;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .aws-inventory-control-panel {
        padding: 1rem;
    }

    .resource-types-list {
        max-height: 200px;
    }
}


.pp-expand2 {
  background-color: transparent;
  display: block;
  position: relative;
}
.pp-expand2.mb-5 {
  margin-bottom: 5px;
}
.pp-expand2.mb-10 {
  margin-bottom: 10px;
}
.pp-expand2.mb-15 {
  margin-bottom: 15px;
}
.pp-expand2 > .header {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  height: 60px;
  border-radius: 5px;
  border-left-width: 5px;
  border-left-style: solid;
  border-left-color: #ffffff;
  margin: 4px 0px;
}
.pp-expand2 > .header.hover:hover {
  background-color: #ececec;
}
.pp-expand2 > .header .title {
  font-size: 14px;
  /* font-weight: 600; */
  color: var(--text-default);
  -webkit-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
}
.pp-expand2 > .header .title .ppi {
  margin-right: 23px;
  margin-left: 23px;
  font-size: 1.2rem;
  transition: all 0.5s;
}
.pp-expand2 > .header .title:not(.disabled):hover {
  color: #0580ce;
  cursor: pointer;
}
.pp-expand2 > .header > .functions {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.pp-expand2 > .header:not(.height) > .functions {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: space-between;
}
.pp-expand2 > .body {
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
  height: 0;
}
.pp-expand2 > .body.expanded {
  overflow: visible;
  opacity: 1;
  height: auto;
}
.pp-expand2.expanded > .header > .title > .ppi {
  transform: rotate(180deg);
}
.filter_view_panel_container {
    width: 100%;
    position: relative;
    justify-content: end;
}

.filter_view_panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fafafa;
    box-shadow: -10px 0 18px 0px rgba(58, 79, 135, 0.15);
    height: calc(100vh - 80px);
    z-index: 9;
    width: 100%;
    padding: 1rem;
    margin-top: -0.75rem;
}

.filter_view_panel_container > .filter_view_panel.focusedStyle {
    position: fixed !important;
    top: 90px;
}

.filter_view_panel_title {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

.filter_view_panel_subtitle {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #2E1956;
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

.filter_view_panel_content {
    height: calc(100vh - 390px);
    max-height: calc(100vh - 390px);
}

.filter_view_panel_list {
    height: calc(100vh - 300px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter_view_panel_item {
    font-size: 12px;
    height: 38px;
    width: 100%;
    padding-left: 10px;
    padding-right: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    border-radius: 8px;
}

.filter_view_panel_item:hover {
    background-color: #EBEBEB !important;
}

.filter_view_panel_item i {
    font-size: 12px;
    font-weight: bolder;
    color: var(--text-light);
    padding-right: 4px;
}

.filter_view_panel_item > .functions {
    display: none;
}

.filter_view_panel_item:hover > .functions {
    display: flex;
    padding-left: 10px;
}

a.filter_view_panel_item {
    font-size: 12px;
    height: 38px;
    width: 100%;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    font-weight: 500;
    border-radius: 8px;
}

p.viewLabel {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter_view_panel_footer_save {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.filter_view_panel_footer_save button {
    width: 100% !important;
}

.filter_view_panel_footer_reset {
    display: flex;
    font-size: 12.8px;
    font-family: "Ubuntu", sans-serif;
    color: #2E1956;
}

.filter_view_panel_list::-webkit-scrollbar {
    width: 8px;
    height: 0;
}

.filter_view_panel_list::-webkit-scrollbar-thumb {
    background: #cccccf;
    height: 8px;
    border-radius: 4px;
}

.filter_view_panel_list::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.filter_view_panel_list::-webkit-scrollbar-track {
    border-radius: 4px;
}

.filter_view_panel_footer > .row > button.lc-button {
    min-width: 15px;
    border-radius: 4px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.scrollable-v {
    overflow-y: auto;
}

.scrollable-v::-webkit-scrollbar {
    width: 6px;
}

.scrollable-v::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollable-v::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.scrollable-v::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.filter_view_panel_footer > .row > button.lc-button {
    min-width: 15px;
    border-radius: 4px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pp-checkbox {
  display: inline-block;
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 5px;
}
.pp-checkbox > .ppi {
  font-size: 1.25rem;
}
.pp-checkbox > .ppi.ppi-checkbox {
  color: #cccccf;
}
.pp-checkbox > .ppi.ppi-checkbox-on {
  color: var(--color-secondary-lime) !important;
  background: var(--text-default);
  border-radius: 8px;
}
.pp-checkbox > .title {
  font-size: 0.875rem;
  color: var(--text-default);
}


.ppi.ppi-checkbox-on:before { 
  top: -1px;
  position: relative;
}
.ppi.ppi-checkbox.disabled {
  cursor: not-allowed;
  background: var(--button-disabled);
  border-radius: 8px;
}
.lc-accordion {
  overflow: visible;
  background-color: transparent;
  margin-bottom: 4px;
  border-bottom: 1px solid #e5e7eb;
}

.lc-accordion>.header {
  margin: 0;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: background-color 0.15s ease;
}

.lc-accordion>.header:hover {
  background-color: #f9fafb;
}

.lc-accordion>.header>.title {
  display: flex;
  align-items: center;
  flex: 1 1;
}

.lc-accordion>.header>.chevron {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.lc-accordion>.header>.chevron.rotate {
  transform: rotate(-90deg);
}

.lc-accordion.visible>.header>.chevron.rotate {
  transform: rotate(0deg);
}

.lc-accordion>.body {
  margin: 0;
  padding: 0 4px 8px 4px;
  background-color: transparent;
}

.lc-accordion>.body.collapsed {
  display: none;
}
.lc-segment {
  width: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.lc-segment > .title {
  display: table-cell;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #8b90a3;
  margin-bottom: 1rem;
}
.lc-segment > .body {
  position: relative;
  width: 100%;
  height: auto;
}
.lc-segment > .body > .content {
  width: 100%;
}
.lc-segment > .body > .content.centralized {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lcd-alert > .all {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6000;
  background-color: rgba(255, 255, 255, 0.5);
}
.lcd-alert > .all > .body {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.25);
  padding: 15px;
  min-width: 300px;
  max-width: 500px;
}
.lcd-alert > .all > .body > .title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.lcd-alert > .all > .body > .text {
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.lcd-alert > .all > .body > .actions {
  display: flex;
  justify-content: end;
}
.button {
    height: 33px;
    width: 30px;
    background-color: #B8CCEA;
    color: #141B4D;
    font-weight: bolder;
    font-family: Inter;
    border-radius: 4px;
    border: 1px solid #e2e6f3;
    font-size: 14px;
}

.button:hover {
    background: #5969CD;
    color: white;
}

.imgSize {
    transform: scale(.85) !important;
    visibility: visible !important; 
    width:  fit-content;
    height: fit-content;
    border: solid 0.1px; 
    border-radius: 5px ;
    max-width: 52rem; 
    max-height: 31rem; 
}

.iframeSize {
    max-height: 31rem; 
    max-width: 47rem;
    height: 65.0567vh;
    width: 53vw;
}

.divOrderView {
    display: flex;
    width: auto;
    height: auto;
    align-items: center; 
    justify-content: center; 
    max-height: 28rem;
}

.divOrderAttachmentTitle {
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-between;
}

@media screen and (min-width: 2200px){
    .imgSize{
        max-width: 80rem;
        max-height: 60rem;
    }
}
.formModalDescription {
    font-family: 'Ubuntu';
    font-size: 14px;
}

.formModalFieldset {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid lightgray;
    padding: 10px 10px 5px 10px;
    margin: 10px 10px 0 0; */


    
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
    gap: 12px;
    padding:12px;    
    border: 1px solid #ddd;

}



.formModalFieldsetTitle {
    padding: 0 10px 0 10px;
    font-size: 14px;
    font-family: 'Ubuntu';
}

.contentInformation {
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.DashboardTitulo {
    font-family: "Ubuntu", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: -0.04em;
    text-align: left;
    color: #8B90A3;
}

.MuiStep-horizontal {
    padding: 1px 1px 1px 1px !important;
}

.MuiStepConnector-alternativeLabel {
    top: 12px;
    left: calc(-50% + 24px) !important;
    right: calc(50% + 24px) !important;
    position: absolute;
}

/* .MuiPaper-root {
    max-width: 70% !important;
} */

.formModalWizardFormArea {    
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff; 
}

.infoWizardFieldGroup {
    min-width: calc(100% - 100px);
    min-width: calc(100%);
    display: grid;
    /* scroll-behavior: auto; */
    overflow-y: auto;
}

.formModalWizardFieldGroup {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;    
    grid-gap: 12px;    
    gap: 12px;
    min-height: 23vh;
    margin-bottom: 10px;
    align-items: stretch;
    align-content: stretch
}

.pp-modal .formModalWizardFieldGroup {    
    height: 36vh;
}

.wizard-info-container {
    background-color: #F1F5FB;
    padding: 16px;
    border-radius: 4px;
    display: flex;
    align-items: start;
}

.wizard-info-icon {
    font-size: 22px; /* Size of the info icon */
    margin-right: 8px;
    min-width: 24px;
    min-height: 24px;
}

.wizard-info-text {
    color: #2B304F; /* Color for the text */
}

.formModalWizardButtons {
    width: 100%;
    display: block;
    margin-top: 25px;
    /* width: 800px; */
}

.formModalWizardReviewArea {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    font-size: 14px;
    height: 33vh;
    margin-bottom: 20px;
}


.formModalWizardReviewArea ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.formModalWizardReviewDesc {
    /* min-width: calc(100vw - 100px); */
    margin-bottom: 24px;
    font-weight: 600;
}

.formModalWizardReviewFields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 20px;
    border: 2px dotted lightgray;
    padding: 10px;
}

.formModalWizardReviewButtons {
    display: flex;
    width: 100%;
    justify-content: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.MuiSvgIcon-root MuiStepIcon-root MuiStepIcon-active {
    color: black !important;
}

.MuiStepConnector-horizontal {
    margin: 10px !important;
}


.pp-modal .MuiStepper-root {    
    padding: 0 0 24px 0;
}
.lc-checklabelvaluelist {
  position: relative;
  border: 0;
  border-radius: 0.3rem;
  font-size: 14px;
}
.lc-checklabelvaluelist > .filter {
  margin-bottom: 1.75rem;
  margin-right: 1.25rem;
}
.lc-checklabelvaluelist > .filter ::placeholder {
  font-style: italic;
  color: #8b90a3;
}
.lc-checklabelvaluelist > .header {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  padding: 0.3rem 1rem;
}
.lc-checklabelvaluelist > .header .input-toggle,
.lc-checklabelvaluelist > .header .input-checkbox {
  margin-right: 25px;
}
.lc-checklabelvaluelist > .header .title {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-default);
}
.lc-checklabelvaluelist > .list {
  min-height: calc(100vh - 400px);
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.lc-checklabelvaluelist > .list > .item {
  display: flex;
  align-items: center;
  padding: 0.3rem 1rem;
  border-radius: 0.25rem;
  background-color: #fff;
  margin-bottom: 3px;
  color: #0580ce;
}
.lc-checklabelvaluelist > .list > .item .input-toggle,
.lc-checklabelvaluelist > .list > .item .input-checkbox {
  margin-right: 25px;
}
.lc-checklabelvaluelist > .list > .item:nth-child(even) {
  background-color: #fafdff;
}
.lc-checklabelvaluelist > .list > .item:hover {
  background-color: #eee;
}
.lc-checklabelvaluelist > .list > .item > label {
  font-size: 1rem;
}
/* LcTableAccordion - Table row accordion with tree connectors */

.lc-table-accordion {
    width: 100%;
    overflow: visible;
}

/* Header row - displays like a table row */
.lc-table-accordion-header {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    cursor: default;
}

/* Individual cell in header */
.lc-table-accordion-cell {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.lc-table-accordion-cell:first-child {
    padding-left: 4px;
}

/* Chevron wrapper */
.lc-table-accordion-chevron-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Chevron icon with rotation animation */
.lc-table-accordion-chevron {
    font-size: 12px;
    color: var(--text-default);
    transition: transform 0.2s ease-in-out;
}

.lc-table-accordion-chevron.expanded {
    transform: rotate(90deg);
}

/* Cell content container */
.lc-table-accordion-cell-content {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Count badge */
.lc-table-accordion-count {
    margin-left: 6px;
    color: var(--text-link);
    font-size: 0.9em;
    flex-shrink: 0;
}

/* Collapsible body */
.lc-table-accordion-body {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
}

.lc-table-accordion-body.collapsed {
    max-height: 0;
    opacity: 0;
}

.lc-table-accordion-body.expanded {
    max-height: 2000px;
    opacity: 1;
}

/* Child row styling */
.lc-table-accordion-child-row {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 36px;
    padding-left: 8px;
}

/* Tree connector for child rows */
.lc-table-accordion-tree-connector {
    display: flex;
    align-items: center;
    color: var(--text-disabled);
    font-family: monospace;
    font-size: 14px;
    margin-right: 8px;
    -webkit-user-select: none;
            user-select: none;
    flex-shrink: 0;
    padding-left: 12px;
}

/* Status dot indicator */
.lc-table-accordion-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.lc-table-accordion-status-dot.active {
    background-color: #4caf50;
}

.lc-table-accordion-status-dot.inactive {
    background-color: #e64646;
}

.lc-table-accordion-status-dot.warning {
    background-color: #ffb800;
}

/* Child cell styling - matches parent cell widths */
.lc-table-accordion-child-cell {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.lc-table-accordion-child-cell-content {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Icon container */
.lc-table-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Badges container */
.lc-table-accordion-badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

/* Individual badge */
.lc-table-accordion-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.lc-table-accordion-badge.clickable {
    cursor: pointer;
}

/* Header actions container - positioned at the end of the header row */
.lc-table-accordion-header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 12px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Optional: highlight header on hover only when accordion is collapsed */
.lc-table-accordion.lc-table-accordion-hover-collapsed:not(.expanded) .lc-table-accordion-header:hover {
    background-color: var(--menu-item-hover);
}

/* Optional: hide badges/count until header is hovered (only when collapsed) */
.lc-table-accordion.lc-table-accordion-badges-hover-only:not(.expanded) .lc-table-accordion-count,
.lc-table-accordion.lc-table-accordion-badges-hover-only:not(.expanded) .lc-table-accordion-badges {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.lc-table-accordion.lc-table-accordion-badges-hover-only:not(.expanded) .lc-table-accordion-header:hover .lc-table-accordion-count,
.lc-table-accordion.lc-table-accordion-badges-hover-only:not(.expanded) .lc-table-accordion-header:hover .lc-table-accordion-badges {
    opacity: 1;
}
