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

@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-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;
}
.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);
        }
      }

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

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