.lc-loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.lc-loading > .w-100p {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-skeleton-single {
  --lc-indicator-duration: 1.05s;
  --lc-wave-duration: 1.1s;
  --lc-pulse-duration: 1.6s;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 4px auto auto minmax(0, 1fr) auto;
  grid-gap: 10px;
  gap: 10px;
}

.lc-skeleton-activity-track {
  width: 100%;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.22);
}

.lc-skeleton-activity-indicator {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 150, 196, 0) 0%, rgba(10, 150, 196, 0.55) 50%, rgba(10, 150, 196, 0) 100%);
  animation: lc-loading-indicator var(--lc-indicator-duration) ease-in-out infinite;
}

.lc-skeleton-default-header,
.lc-skeleton-default-tools,
.lc-skeleton-default-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lc-skeleton-default-header {
  justify-content: space-between;
}

.lc-skeleton-default-tools {
  flex-wrap: wrap;
}

.lc-skeleton-main-panel {
  width: 100%;
  min-height: 0;
  height: 100%;
}

.lc-skeleton-title {
  width: 40%;
  height: 12px;
}

.lc-skeleton-action {
  width: 16%;
  min-width: 72px;
  height: 12px;
}

.lc-skeleton-chip {
  height: 10px;
}

.lc-skeleton-footer-line {
  height: 10px;
}

.lc-skeleton-surface {
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(226, 232, 240, 0.5) 0%,
    rgba(226, 232, 240, 0.28) 100%
  );
  animation: lc-skeleton-pulse var(--lc-pulse-duration) ease-in-out infinite;
}

.lc-skeleton-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: lc-skeleton-wave var(--lc-wave-duration) ease-in-out infinite;
}

.lc-loading-progress-wrapper {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lc-loading-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e8edf3;
  overflow: hidden;
}

.lc-loading-progress-value {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a96c4 0%, #10b981 100%);
  transition: width 0.25s ease;
}

.progress {
  color: var(--text-dark);
  font-family: 'Ubuntu', sans-serif;
  font-size: 12px;
  min-width: 38px;
  text-align: right;
}

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

.lc-loading-chat {
  width: 100%;
  height: auto;
  display: block;
}

.lc-chat-typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.lc-chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aa3af;
  background: var(--text-light, #9aa3af);
  animation: lc-chat-typing-bounce 1.2s ease-in-out infinite;
}

.lc-chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.lc-chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes lc-chat-typing-bounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lc-chat-typing-dot {
    animation: none;
  }
}

@keyframes lc-loading-indicator {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(300%);
  }
}

@keyframes lc-skeleton-wave {
  to {
    transform: translateX(100%);
  }
}

@keyframes lc-skeleton-pulse {
  0%,
  100% {
    opacity: 0.88;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lc-loading > .w-100p {
    gap: 8px;
  }

  .lc-skeleton-single {
    gap: 7px;
  }

  .lc-skeleton-title {
    width: 58%;
  }

  .lc-skeleton-action {
    width: 24%;
    min-width: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lc-skeleton-activity-indicator,
  .lc-skeleton-surface,
  .lc-skeleton-surface::after {
    animation: none;
  }

  .lc-loading-progress-value {
    transition: none;
  }
}
.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);
        }
      }

/* Tooltip portaled to document.body — always above grids/overflow containers */
.lc-iconlink-portal-tooltip {
    position: fixed;
    z-index: 2147483000;
    pointer-events: none;
    width: max-content;
    max-width: min(350px, calc(100vw - 16px));
}

.lc-iconlink-portal-tooltip.delay {
    transition-delay: 0.5s;
    transition-property: opacity, visibility;
}

.lc-iconlink-portal-tooltip__body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0px 0px 3px rgba(32, 47, 47, 0.36));
}

.lc-iconlink-portal-tooltip__content {
    z-index: 2;
    width: max-content;
    max-width: min(350px, calc(100vw - 16px));
    height: auto;
    background-color: #F5F3FA;
    background-color: var(--background-lightest, #F5F3FA);
    border: 0;
    border-radius: 4px;
    padding: 8px 12px;
    font-family: "Ubuntu", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
    color: #2E1956;
    color: var(--text-default, #2E1956);
    white-space: normal;
}

.lc-iconlink-portal-tooltip__arrow {
    z-index: 1;
    width: 10px;
    height: 10px;
    background-color: #F5F3FA;
    background-color: var(--background-lightest, #F5F3FA);
    position: absolute;
    transform: rotate(45deg);
}

.lc-iconlink-portal-tooltip.placement-top .lc-iconlink-portal-tooltip__arrow {
    bottom: -4px;
    left: 50%;
    margin-left: -5px;
}

.lc-iconlink-portal-tooltip.placement-bottom .lc-iconlink-portal-tooltip__arrow {
    top: -4px;
    left: 50%;
    margin-left: -5px;
}

.lc-iconlink-portal-tooltip.placement-left .lc-iconlink-portal-tooltip__arrow {
    right: -4px;
    top: 50%;
    margin-top: -5px;
}

.lc-iconlink-portal-tooltip.placement-right .lc-iconlink-portal-tooltip__arrow {
    left: -4px;
    top: 50%;
    margin-top: -5px;
}

.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);
}
.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: #ffb800;
  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;
}
.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-primary-purple) !important;
}
.input-checkbox > .title {
  font-size: 0.875rem;
  color: var(--text-default);
}
@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: left;
}
.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-primary-purple) !important;
}

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

.input-toggle.toggled>.box>.dot {
  margin-left: 16px;
  background-color: var(--background-white);
}

.input-toggle>.title {
  margin-left: 7px;
  margin-bottom: 3px;
  font-size: 0.835rem;
  color: #2E1956;
  font-family: "Ubuntu", sans-serif;
}
.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-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;
}
.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);
}
@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;
}
/* 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;
    margin-bottom: 10px;
}

.alert-preferences {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: var(--text-secondary);
    font-size: 12px;
}

.alert-preferences label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

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

.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-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;
}
/* 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;
}
.lct-container {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #fff;
    background: var(--background-white, #fff);
    border: none;
    border-radius: 0.25rem;
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.06);
    font-family: "Ubuntu", sans-serif;
}

.lct-container--bar-only {
    grid-template-rows: auto;
    height: auto;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.lct-bar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid #EBEBEB;
    border-bottom: 1px solid var(--line-light, #EBEBEB);
    background: #FAFBFF;
    background: var(--background-lightest, #FAFBFF);
    padding: 0.25rem 0.5rem 0 0.5rem;
    scrollbar-width: thin;
}

.lct-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border: none;
    background: transparent;
    color: #6B6F7D;
    color: var(--text-dark, #6B6F7D);
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.lct-tab:hover {
    color: #2E1956;
    color: var(--text-default, #2E1956);
    background: rgba(140, 64, 227, 0.04);
}

.lct-tab--active {
    color: #8C40E3;
    color: var(--color-primary-purple, #8C40E3);
    border-bottom-color: #8C40E3;
    border-bottom-color: var(--color-primary-purple, #8C40E3);
    background: #fff;
    background: var(--background-white, #fff);
}

.lct-tab--security.lct-tab--active {
    color: #DC291E;
    color: var(--status-red, #DC291E);
    border-bottom-color: #DC291E;
    border-bottom-color: var(--status-red, #DC291E);
}

.lct-tab-icon {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.lct-tab-label {
    max-width: 22ch;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lct-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 16px;
    padding: 0 5px;
    border-radius: 8px;
    background: #E2E6F3;
    background: var(--background-light, #E2E6F3);
    color: #2E1956;
    color: var(--text-default, #2E1956);
    font-size: 9px;
    font-weight: 600;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.lct-tab--active .lct-tab-badge {
    background: #8C40E3;
    background: var(--color-primary-purple, #8C40E3);
    color: #fff;
}

.lct-tab--security.lct-tab--active .lct-tab-badge {
    background: #DC291E;
    background: var(--status-red, #DC291E);
}

.lct-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 0;
    overflow: hidden;
}

.lct-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.85rem;
    border-bottom: 1px solid #EBEBEB;
    border-bottom: 1px solid var(--line-light, #EBEBEB);
}

.lct-panel-title-block {
    flex: 1 1;
    min-width: 0;
}

.lct-panel-title {
    font-size: 13px;
    font-weight: 600;
    color: #2E1956;
    color: var(--text-default, #2E1956);
    line-height: 1.2;
}

.lct-panel-subtitle {
    font-size: 10px;
    color: #6B6F7D;
    color: var(--text-dark, #6B6F7D);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(90ch, 80vw);
    margin-top: 1px;
}

.lct-panel-metrics {
    display: flex;
    gap: 0.9rem;
    flex-shrink: 0;
}

.lct-metric {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: right;
}

.lct-metric-label {
    font-size: 10px;
    color: #6B6F7D;
    color: var(--text-dark, #6B6F7D);
    white-space: nowrap;
}

.lct-metric-value {
    font-size: 16px;
    font-weight: 600;
    color: #2E1956;
    color: var(--text-default, #2E1956);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lct-metric-value--purple { color: #8C40E3; color: var(--color-primary-purple, #8C40E3); }
.lct-metric-value--red { color: #DC291E; color: var(--status-red, #DC291E); }

.lct-panel-body {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem 0.75rem;
}
.lc-breadcrumb-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    min-height: 32px;
    padding: 2px 6px;
    box-sizing: border-box;
    border: 1px solid #e6eaf3;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 1px 3px rgba(30, 49, 94, 0.04);
    color: #64748b;
    font-size: 12px;
    white-space: nowrap;
}

.lc-breadcrumb-dropdown__separator {
    flex: 0 0 auto;
    color: #94a3b8;
    font-size: 16px;
    line-height: 1;
}

.lc-breadcrumb-dropdown__segment {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    border-radius: 5px;
}

.lc-breadcrumb-dropdown__segment:hover,
.lc-breadcrumb-dropdown__segment.is-open {
    background: #f1f5ff;
    color: #173192;
}

.lc-breadcrumb-dropdown__label,
.lc-breadcrumb-dropdown__toggle {
    border: 0;
    background: transparent;
    color: #475569;
    cursor: pointer;
    font: inherit;
}

.lc-breadcrumb-dropdown__label {
    max-width: 240px;
    overflow: hidden;
    padding: 5px 3px 5px 6px;
    text-overflow: ellipsis;
}

.lc-breadcrumb-dropdown__label:hover,
.lc-breadcrumb-dropdown__label:focus-visible {
    color: #2563eb;
    outline: none;
}

.lc-breadcrumb-dropdown__label.is-current {
    color: #173192;
    font-weight: 700;
}

.lc-breadcrumb-dropdown__label-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lc-breadcrumb-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 24px;
    padding: 0 4px 0 0;
    color: #94a3b8;
    opacity: 0;
    transition: opacity 120ms ease, color 120ms ease, transform 120ms ease;
}

.lc-breadcrumb-dropdown__segment:hover .lc-breadcrumb-dropdown__toggle,
.lc-breadcrumb-dropdown__segment:focus-within .lc-breadcrumb-dropdown__toggle,
.lc-breadcrumb-dropdown__segment.is-open .lc-breadcrumb-dropdown__toggle {
    opacity: 1;
}

.lc-breadcrumb-dropdown__segment.is-open .lc-breadcrumb-dropdown__toggle {
    color: #2563eb;
    transform: rotate(180deg);
}

.lc-breadcrumb-dropdown__toggle:focus-visible {
    color: #2563eb;
    opacity: 1;
    outline: 2px solid rgba(37, 99, 235, 0.25);
    outline-offset: 1px;
}

.lc-breadcrumb-dropdown__menu {
    position: fixed;
    z-index: 2147483000;
    display: flex;
    flex-direction: column;
    width: min(360px, calc(100vw - 32px));
    max-height: min(460px, calc(100vh - 32px));
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #e1e7f2;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(31, 45, 90, 0.16), 0 3px 10px rgba(31, 45, 90, 0.08);
    white-space: normal;
    animation: lc-breadcrumb-menu-in 140ms ease-out;
}

.lc-breadcrumb-dropdown__menu::-webkit-scrollbar,
.lc-breadcrumb-dropdown__results::-webkit-scrollbar {
    width: 7px;
}

.lc-breadcrumb-dropdown__menu::-webkit-scrollbar-track,
.lc-breadcrumb-dropdown__results::-webkit-scrollbar-track {
    background: transparent;
}

.lc-breadcrumb-dropdown__menu::-webkit-scrollbar-thumb,
.lc-breadcrumb-dropdown__results::-webkit-scrollbar-thumb {
    border: 2px solid #fff;
    border-radius: 99px;
    background: #cbd5e7;
}

.lc-breadcrumb-dropdown__results {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 1px;
}

@keyframes lc-breadcrumb-menu-in {
    from { opacity: 0; transform: translateY(-4px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lc-breadcrumb-dropdown__search-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 7px 9px;
    border: 1px solid #dce5f4;
    border-radius: 8px;
    background: #f8faff;
    color: #8a97ad;
    transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.lc-breadcrumb-dropdown__search-wrap:focus-within {
    border-color: #7da8ff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.1);
}

.lc-breadcrumb-dropdown__search-wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #334155;
    font: inherit;
    background: transparent;
}

.lc-breadcrumb-dropdown__section {
    padding: 7px 8px 5px;
    color: #8794ab;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lc-breadcrumb-dropdown__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    width: 100%;
    min-height: 42px;
    padding: 8px 9px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #334155;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.lc-breadcrumb-dropdown__option:hover,
.lc-breadcrumb-dropdown__option:focus-visible {
    background: linear-gradient(90deg, #eef4ff 0%, #f7f9ff 100%);
    color: #173192;
    outline: none;
}

.lc-breadcrumb-dropdown__option:active {
    background: #e5edff;
}

.lc-breadcrumb-dropdown__option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 8px;
    background: #f3f6fc;
    transition: background 120ms ease, transform 120ms ease;
}

.lc-breadcrumb-dropdown__option:hover .lc-breadcrumb-dropdown__option-icon,
.lc-breadcrumb-dropdown__option:focus-visible .lc-breadcrumb-dropdown__option-icon {
    background: #fff;
    transform: translateX(1px);
}

.lc-breadcrumb-dropdown__option-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.lc-breadcrumb-dropdown__option-main span,
.lc-breadcrumb-dropdown__option-main small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lc-breadcrumb-dropdown__option-main span {
    font-size: 12.5px;
    font-weight: 500;
}

.lc-breadcrumb-dropdown__option-main small {
    margin-top: 2px;
    color: #94a3b8;
    font-size: 10px;
}

.lc-breadcrumb-dropdown__count {
    flex: 0 0 auto;
    color: #64748b;
    font-size: 11px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.lc-breadcrumb-dropdown__resource-icon {
    flex: 0 0 auto;
    color: #2563eb;
}

.lc-breadcrumb-dropdown__empty,
.lc-breadcrumb-dropdown__more {
    padding: 9px 8px;
    color: #94a3b8;
    font-size: 11px;
}

.lc-breadcrumb-dropdown__more {
    border-top: 1px solid #eef2f7;
    text-align: center;
}

.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;
}
.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);
}
.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;
}
/* FinOps RevoGrid styling aligned with Consolidated Recommendations. */

.finops-revo-grid {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.finops-revo-grid revo-grid {
    flex: 1 1;
    min-height: 0;
}

.finops-revo-grid--clickable revo-grid .rgRow {
    cursor: pointer;
}

.finops-revo-grid revo-grid .revo-cell--right {
    text-align: right;
    justify-content: flex-end;
}

.finops-revo-grid revo-grid .revo-cell--center {
    text-align: center;
    justify-content: center;
}

.finops-revo-grid revo-grid .header-rgRow,
.finops-revo-grid revo-grid .rgHeaderCell {
    background-color: #fff !important;
    border-bottom: solid 1px #E2E6F3 !important;
    min-height: 28px;
}

.finops-revo-grid revo-grid .rgHeaderCell {
    font-family: "Ubuntu", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    color: #6B6F7D;
    text-transform: none;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.finops-revo-grid revo-grid .rgHeaderCell::before,
.finops-revo-grid revo-grid .rgHeaderCell::after,
.finops-revo-grid revo-grid .rgHeaderCell .resizable-r,
.finops-revo-grid revo-grid .header-rgRow .resizable-r,
.finops-revo-grid revo-grid .header-rgRow .resize-r {
    border: none !important;
    background: transparent !important;
}

.finops-revo-grid revo-grid revogr-header,
.finops-revo-grid revo-grid revogr-header .rgHeaderCell,
.finops-revo-grid revo-grid revogr-viewport-scroll.colPinStart revogr-header,
.finops-revo-grid revo-grid revogr-viewport-scroll.colPinStart revogr-header .rgHeaderCell,
.finops-revo-grid revo-grid revogr-viewport-scroll.colPinEnd revogr-header,
.finops-revo-grid revo-grid revogr-viewport-scroll.colPinEnd revogr-header .rgHeaderCell {
    box-shadow: none !important;
    border-left: none !important;
    border-right: none !important;
}

.finops-revo-grid revo-grid .rgHeaderCell:hover {
    color: #2E1956;
    background-color: #FAFBFD !important;
}

.finops-revo-grid revo-grid .rgHeaderCell.sortable {
    cursor: pointer;
}

.finops-revo-grid revo-grid .rgHeaderCell .header-content {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.finops-revo-grid revo-grid .rgHeaderCell.sort-asc,
.finops-revo-grid revo-grid .rgHeaderCell.sort-desc {
    color: #2E1956;
}

.finops-revo-grid revo-grid .rgHeaderCell .sort-icon,
.finops-revo-grid revo-grid .rgHeaderCell.sort-asc::after,
.finops-revo-grid revo-grid .rgHeaderCell.sort-desc::after {
    color: #471FCC;
    font-size: 0.65rem;
}

.finops-revo-grid revo-grid .rgRow {
    border-bottom: 1px solid #F1F3F8;
}

.finops-revo-grid revo-grid .rgRow:hover {
    background-color: #FAFBFD;
}

.finops-revo-grid revo-grid .rgCell {
    font-family: "Ubuntu", sans-serif;
    font-size: 0.75rem;
    color: #2E1956;
    padding: 4px 8px;
    border-right: none !important;
}

.finops-revo-grid revo-grid .resizable-r {
    border-right: 1px solid #E2E6F3;
}

/* RevoGrid filter panel. */
.finops-revo-grid revo-grid revogr-filter-panel {
    font-family: "Ubuntu", sans-serif !important;
    background: #fff !important;
    border: 1px solid #E2E6F3 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(46, 25, 86, 0.12) !important;
    padding: 12px !important;
    min-width: 200px !important;
}

.finops-revo-grid revo-grid revogr-filter-panel .filter-header,
.finops-revo-grid revo-grid revogr-filter-panel label {
    font-family: "Ubuntu", sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: #2E1956 !important;
    margin-bottom: 8px !important;
}

.finops-revo-grid revo-grid revogr-filter-panel select {
    font-family: "Ubuntu", sans-serif !important;
    font-size: 0.8rem !important;
    color: #2E1956 !important;
    background: #fff !important;
    border: 1px solid #E2E6F3 !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    cursor: pointer !important;
}

.finops-revo-grid revo-grid revogr-filter-panel select:focus,
.finops-revo-grid revo-grid revogr-filter-panel input:focus {
    outline: none !important;
    border-color: #471FCC !important;
}

.finops-revo-grid revo-grid revogr-filter-panel input[type="text"],
.finops-revo-grid revo-grid revogr-filter-panel input[type="number"] {
    font-family: "Ubuntu", sans-serif !important;
    font-size: 0.8rem !important;
    color: #2E1956 !important;
    background: #fff !important;
    border: 1px solid #E2E6F3 !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    width: 100% !important;
    margin-bottom: 12px !important;
}

.finops-revo-grid revo-grid revogr-filter-panel .filter-actions,
.finops-revo-grid revo-grid revogr-filter-panel .buttons {
    display: flex !important;
    gap: 8px !important;
    margin-top: 4px !important;
}

.finops-revo-grid revo-grid revogr-filter-panel button {
    font-family: "Ubuntu", sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex: 1 1 !important;
    min-width: 70px !important;
    height: 32px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.finops-revo-grid revo-grid revogr-filter-panel button:first-of-type,
.finops-revo-grid revo-grid revogr-filter-panel button[type="submit"] {
    background: #2E1956 !important;
    color: #fff !important;
    border: 1px solid #2E1956 !important;
}

.finops-revo-grid revo-grid revogr-filter-panel button:first-of-type:hover,
.finops-revo-grid revo-grid revogr-filter-panel button[type="submit"]:hover {
    background: #471FCC !important;
    border-color: #471FCC !important;
}

/* Toolbar above the grid. */
.finops-revo-grid-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px 8px;
    flex-wrap: wrap;
}

.finops-revo-grid-toolbar-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #475569;
}

.finops-revo-grid-toolbar-label {
    font-weight: 500;
}

.finops-revo-grid-toolbar-select {
    height: 26px;
    padding: 0 8px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
    color: #1e293b;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    outline: none;
}

.finops-revo-grid-toolbar-select:focus {
    border-color: #2E1956;
}

.finops-revo-grid-toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 26px;
    padding: 0 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    color: #475569;
    font-size: 11px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.15s ease;
}

.finops-revo-grid-toolbar-btn:hover {
    border-color: #cbd5e1;
    color: #1e293b;
}

.finops-revo-grid-toolbar-btn.active {
    border-color: #2E1956;
    background: #f5f3fa;
    color: #2E1956;
}

.finops-revo-grid-toolbar-iconbtn {
    width: 22px;
    height: 22px;
    margin-left: 2px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    color: #8a86a6;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 120ms, color 120ms, border-color 120ms;
}

.finops-revo-grid-toolbar-iconbtn:hover:not(:disabled) {
    background: #f5f3fa;
    color: #2E1956;
    border-color: #e2e8f0;
}

.finops-revo-grid-toolbar-iconbtn:disabled {
    color: #d4d2e0;
    cursor: not-allowed;
}

/* Column configuration popover. */
.finops-revo-grid-col-config-panel {
    position: fixed;
    width: 320px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    z-index: 9999;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}

.finops-revo-grid-col-config-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 600;
    color: #1e293b;
}

.finops-revo-grid-col-config-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 2px;
    display: inline-flex;
    border-radius: 3px;
}

.finops-revo-grid-col-config-close:hover {
    background: #f1f5f9;
    color: #475569;
}

.finops-revo-grid-col-config-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 360px;
    overflow-y: auto;
}

.finops-revo-grid-col-config-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    transition: background 0.15s;
}

.finops-revo-grid-col-config-item:hover {
    background: #f8fafc;
}

.finops-revo-grid-col-config-item.hidden {
    opacity: 0.55;
}

.finops-revo-grid-col-config-item.fixed .finops-revo-grid-col-config-label::after {
    content: ' (fixa)';
    color: #94a3b8;
    font-size: 10px;
}

.finops-revo-grid-col-config-vis {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569;
}

.finops-revo-grid-col-config-vis:hover:not(:disabled) {
    border-color: #2E1956;
    color: #2E1956;
}

.finops-revo-grid-col-config-vis:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.finops-revo-grid-col-config-label {
    flex: 1 1;
    color: #1e293b;
    font-size: 12px;
}

.finops-revo-grid-col-config-arrows {
    display: inline-flex;
    gap: 2px;
}

.finops-revo-grid-col-config-arrows button {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
}

.finops-revo-grid-col-config-arrows button:hover:not(:disabled) {
    border-color: #2E1956;
    color: #2E1956;
}

.finops-revo-grid-col-config-arrows button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.finops-revo-grid-col-config-footer {
    padding: 8px 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

.finops-revo-grid-col-config-reset {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: #475569;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.finops-revo-grid-col-config-reset:hover {
    border-color: #2E1956;
    color: #2E1956;
}
.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;
}
.lc-global-error {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 32px;
    background: linear-gradient(135deg, #fafbff 0%, #eef1f8 100%);
    background: linear-gradient(135deg, var(--background-lightest, #fafbff) 0%, #eef1f8 100%);
    color: #2e1956;
    color: var(--text-default, #2e1956);
    font-family: "Ubuntu", sans-serif;
}

.lc-global-error__panel {
    position: relative;
    width: min(640px, 100%);
    padding: 40px 48px 44px;
    overflow: hidden;
    border: 1px solid rgba(46, 25, 86, 0.09);
    border-radius: 12px;
    background: #ffffff;
    background: var(--background-white, #ffffff);
    box-shadow: 0 22px 55px rgba(46, 25, 86, 0.14);
    text-align: center;
}

.lc-global-error__panel::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e1956, #471fcc, #00dbff);
    background: linear-gradient(90deg, var(--color-primary-purple-dark, #2e1956), var(--color-primary-blue, #471fcc), var(--color-secondary-cyan, #00dbff));
    content: "";
}

.lc-global-error__brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: #2e1956;
    color: var(--color-primary-purple-dark, #2e1956);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.lc-global-error__brand-mark {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: #2e1956;
    background: var(--color-primary-purple-dark, #2e1956);
    color: #ffffff;
    color: var(--text-white, #ffffff);
    font-size: 11px;
    line-height: 1;
}

.lc-global-error__status {
    display: grid;
    width: 44px;
    height: 44px;
    margin: 0 auto 18px;
    place-items: center;
    border: 1px solid rgba(0, 219, 255, 0.32);
    border-radius: 50%;
    background: rgba(0, 219, 255, 0.1);
    color: #471fcc;
    color: var(--color-primary-blue, #471fcc);
    font-size: 24px;
    font-weight: 500;
}

.lc-global-error h1 {
    margin: 0 0 12px;
    color: #2e1956;
    color: var(--color-primary-purple-dark, #2e1956);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.lc-global-error__description {
    max-width: 500px;
    margin: 0 auto 24px;
    color: #6b6f7d;
    color: var(--text-dark, #6b6f7d);
    font-size: 15px;
    line-height: 1.55;
}

.lc-global-error__diagnostic {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    color: #8b90a3;
    color: var(--text-light, #8b90a3);
    font-size: 12px;
    line-height: 1.4;
}

.lc-global-error__diagnostic code {
    color: #2e1956;
    color: var(--color-primary-purple-dark, #2e1956);
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.lc-global-error__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lc-global-error__action {
    min-height: 40px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.lc-global-error__action:hover {
    transform: translateY(-1px);
}

.lc-global-error__action:focus-visible {
    outline: 3px solid rgba(0, 219, 255, 0.36);
    outline-offset: 2px;
}

.lc-global-error__action--primary {
    background: #471fcc;
    background: var(--color-primary-blue, #471fcc);
    color: #ffffff;
    color: var(--text-white, #ffffff);
    box-shadow: 0 8px 18px rgba(71, 31, 204, 0.2);
}

.lc-global-error__action--primary:hover {
    background: #2e1956;
    background: var(--color-primary-purple-dark, #2e1956);
}

.lc-global-error__action--secondary {
    border-color: #e2e6f3;
    border-color: var(--line-default, #e2e6f3);
    background: #e2e6f3;
    background: var(--background-light, #e2e6f3);
    color: #2e1956;
    color: var(--color-primary-purple-dark, #2e1956);
}

.lc-global-error__action--secondary:hover {
    border-color: #9fa3ff;
    border-color: var(--color-secondary-purple-bright, #9fa3ff);
    background: #ffffff;
    background: var(--background-white, #ffffff);
}

.lc-global-error__recovery-note {
    max-width: 500px;
    margin: 22px auto 0;
    color: #9a5b00;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 560px) {
    .lc-global-error {
        padding: 20px 16px;
    }

    .lc-global-error__panel {
        padding: 32px 24px 34px;
    }

    .lc-global-error__brand {
        margin-bottom: 24px;
    }

    .lc-global-error__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .lc-global-error__action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lc-global-error__action {
        transition: none;
    }

    .lc-global-error__action:hover {
        transform: none;
    }
}
