.container1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 100%;

  .containerTerminos {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: scroll;
    height: 100%;
    padding: 0 12px 12px 12px;
    text-align: justify;

    .terminos {
      display: flex;
      flex-direction: column;
      gap: 12px;

      .terminoTitle {
        color: #616161;
        margin: 0;
        padding: 48px 0 0 0;
      }

      .terminoText,
      .terminoSubtext {
        color: #616161;
        margin: 0;
        padding: 0 0 0 0;
      }

      .terminoSubtext {
        padding: 0 0 0 24px;
      }

      .terminoList {
        color: #616161;
        margin: 0;
        padding: 12px 0 0 48px;
      }

      .terminoSubtitle {
        color: #616161;
        margin: 0;
        padding: 24px 0 0 12px;
      }
    }

    .termino1 > .terminoTitle {
      padding: 24px 0 0 0;
    }
  }
}

.frame {
  border: 0.5px solid #616161;
}

.emailData {
  padding-left: 48px;
  align-content: center;
  min-height: 65px;
  border: 1px solid #EEEEEE;
}

.emailData--par {
  background-color: rgb(238,238,238,0.5);
}

.emailData_row {
  display: flex;
  width: 100%;
  align-self: center;
  justify-content: center;
}

.--left {
  display: flex;
  justify-content: left;
}

.--right {
  display: flex;
  justify-content: right;
}

.emailData_row_tittle {
  font-weight: 400;
  font-size: 16px;
  color: #1A237E;
}

.emailData_row_description {
  font-weight: 300;
  font-size: 12px;
  color: #1A237E;
}

.emailData_row_tooltip {
  font-weight: 300;
  font-size: 12px;
  color: #FF4E61;
}

.--icon {
  color: #FF4E61;
  cursor: default;
}

@media (max-width: 768px) {
  .emailData_row, .--left, .--right {
    justify-content: center;
  }
}
.accordion_gruopEmail_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 100%;
}

.accordion_gruopEmail_title_text {
  white-space: break-spaces;
  font-weight: 600;
  font-size: 16px;
  color: #1A237E;
}

.accordion_groupEmail_content {
  display: flex;
  flex-direction: column;
}

.accordion_groupEmail_rightComponent {
  width: 100%;
}
.progressbar-container {
  margin-top: -2px;
  margin-bottom: -10px;
  padding-right: 10px;
  .progressbar-title {
    margin-left: 1px;
    color: #212121;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
  }

  .progressbar-subtitle {
    margin-left: 1px;
    color: #5c6bc0;
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    padding: 5px 0;

    &.grey {
      color: #eeeeee;
    }
    &.green {
      color: #00c853;
    }
    &.red {
      color: #f44336;
    }
    &.yellow {
      color: #ffc400;
    }
  }

  .progressbar-progress {
    text-align: left;
    gap: 4px;
    display: flex;
    margin-top: 5px;
    height: 11px;
  }

  .progressbar-progress_element {
    width: 12px;
    height: 2px;
    display: inline-block;
    position: relative;

    &.blue {
      background-color: #1a237e;
    }
    &.grey {
      background-color: #eeeeee;
    }
    &.green {
      background-color: #00c853;
    }
    &.red {
      background-color: #f44336;
    }
    &.yellow {
      background-color: #ffc400;
    }
  }
}

@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .progressbar-container {
    text-align-last: end;
    .progress {
      place-content: flex-end;
    }
  }
}

.progressBar_align {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media only screen and (max-width: 760px) {
  .progressBar_align {
    flex-direction: column;
  }
}

.productosNominaciones {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
}

@media only screen and (max-width: 767px),
  (min-device-width: 769px) and (max-device-width: 1023px) {
  .productosNominaciones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.obs_comp {
  border-radius: 0.375em;
  padding: 0.125em 0.375em;
  display: flex;
  align-items: flex-start;
  text-align: center;
  margin-bottom: 0.5em;
  width: max-content;

  &.yellow {
    color: #ffc400;
    background-color: #fff8e1;
  }

  &.orange {
    color: #f48636;
    background-color: #fff8eb;
  }

  &.blue {
    color: #1a237e;
    background-color: #e8eaf6;
  }

  &.red {
    color: #f44336;
    background-color: #ffebee;
  }

  &.gray {
    color: #9e9e9e;
    background-color: #f5f5f5;
  }

  &.greenDark {
    color: #028739;
    background-color: #dff6e1;
  }

  &.greenLight {
    color: #00c853;
    background-color: #e8f5e9;
  }
}

.listDetallada {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .listDetallada {
    grid-template-columns: 1fr 1fr;
  }

  .listDetallada :nth-last-child(1) {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1440px) {
  .listDetallada {
    grid-template-columns: 2fr 2fr 4fr;
  }

  .listDetallada :nth-last-child(1) {
    grid-column: auto !important;
  }
}

.muestra-selector-container {
  background-color: #f7f8f9;
  border-radius: 60px;
  padding: 8px 12px;
  display: flex;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.muestra-selector-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #d9e1e8;
  background-color: white;
  color: #6b7787;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

.muestra-selector-button:disabled {
  cursor: not-allowed;
}

.muestra-selector-button:disabled:hover {
  background-color: white;
}

.muestra-selector-button:hover {
  background-color: #f0f3f6;
  border-color: #cbd4de;
}

.muestra-selector-button.active-rechazar {
  background-color: #fdecea;
  border-color: #f44336;
  color: #d32f2f;
}

.muestra-selector-button.active-rechazar:hover {
  background-color: #fbe2e0;
  border-color: #d32f2f;
}

.muestra-selector-button.active-repetir {
  background-color: #e3f2fd;
  border-color: #2196f3;
  color: #1976d2;
}

.muestra-selector-button.active-repetir:hover {
  background-color: #d1e9fc;
  border-color: #1976d2;
}

.muestra-selector-button.active-listo {
  background-color: #edf7ed;
  border-color: #4ebc52;
  color: #205c24;
}

.muestra-selector-button.active-listo:hover {
  background-color: #e3f2e3;
  border-color: #43a047;
}

.muestra-button-icon {
  font-size: 20px;
}

.buttonIcon {
  height: 3.3em;
}

.formTitleSubtitle {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .formGridTwoColumns,
  .formGridThreeColumns,
  .formGridFourColumns {
    grid-template-columns: 1fr !important;
  }

  .actionsContainer {
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
  }

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

  .formTitleSubtitle {
    width: 100% !important;
  }
}

.booking-calendar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.booking-calendar-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 20rem;
  overflow: hidden;
  padding-left: 2rem;
  padding-right: 2rem;
}

.booking-time-slots-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid #e0e0e0;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 20rem;
}

.booking-time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  padding-top: 23px;
}

.booking-time-slot-button {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.15s;
  color: #333;
}

.booking-time-slot-button.selected {
  background-color: #5c6bc0;
  color: #fff;
  border-color: #5c6bc0;
  font-weight: 600;
}

.booking-timezone-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #888;
  margin-top: 1.5rem;
}

.booking-timezone-icon {
  font-size: 0.9rem;
  color: #aaa;
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.booking-footer-date {
  font-size: 0.9rem;
  color: #555;
}

.booking-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 0.5rem;
}

.booking-confirmation__icon {
  margin-bottom: 0.5rem;
}

.booking-confirmation__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-align: center;
}

.booking-confirmation__date {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  text-align: center;
}

.booking-confirmation__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.booking-confirmation__link {
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: #5c6bc0;
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0;
}

.booking-confirmation__link:hover {
  text-decoration: underline;
}

.booking-form-wrapper {
  max-width: 90%;
  margin: 0 auto;
  width: 100%;
}

.booking-form-wrapper .containerY {
  padding: 2rem;
}

.booking-form-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  width: 100%;
}

@media only screen and (max-width: 1400px) {
  .booking-form-wrapper {
    max-width: 75%;
  }
}

@media only screen and (max-width: 1100px) {
  .booking-form-wrapper {
    max-width: 90%;
  }
}

@media only screen and (max-width: 768px) {
  .booking-form-wrapper {
    max-width: 100%;
  }
}

.roleProfileContainer {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  padding-top: 0.875rem;
}

.accordion-header,
.accordion-addons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.main-alerta {
  width: 100% !important;
  height: inherit !important;
  justify-content: center;
  display: flex;
  position: inherit !important;

  .alerta {
    position: absolute;
    z-index: 1;
    display: flex;
    width: calc(100% - 68px);
    height: calc(100vh - 150px);
    background: rgba(255, 255, 255, 0.6);
    p {
      font-size: 20px;
      margin-bottom: 200px !important;
    }
  }
}

/* //fix bug scroll */
.sidebar-open .alerta {
  width: calc(100% - 252px);
}

.disableOverflow-container {
  .container1 {
    overflow: hidden;
  }
}

.report-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100vw;
}

.report-general {
  width: 100%;

  & > div {
    width: 100%;
    height: calc(50vh - 100px);
  }
}

.filtros {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 12px;
  gap: 12px;
  .filtros_box1,
  .filtros_box2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: inherit;
  }
}

.filtrosContainerReportGeneral {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
  .MuiFormControl-root:nth-child(1) {
    flex-basis: 100px;
  }
  .MuiFormControl-root:nth-child(2) {
    flex-basis: 200px;
  }
  .MuiFormControl-root:nth-child(3) {
    flex-basis: 200px;
  }
  .MuiFormControl-root:nth-child(4) {
    flex-basis: 200px;
  }
  .MuiFormControl-root:nth-child(5) {
    flex-basis: 200px;
  }
  .MuiFormControl-root:nth-child(6) {
    flex-basis: 200px;
  }
  @media screen and (min-width: 1100px) and (max-width: 1280px) {
    .MuiFormControl-root:nth-child(5) {
      flex-basis: 45%;
    }
  }
  .MuiFormControl-root {
    flex-grow: 1;
    max-height: 68px;

    .MuiFormControl-root {
      flex-basis: inherit;
    }
  }
}

@media (min-width: 1200px) {
  /*   .report-general > div:nth-child(odd) {
    width: calc(33% - 6px);
  }

  .report-general > div:nth-child(even) {
    width: calc(67% - 6px);
  } */
  .filtros {
    .filtros_box1,
    .filtros_box2 {
      width: 450px;
      flex-direction: row;
    }
  }
}

:root {
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --text-font-family: 'Inter', sans-serif;
  --display-font-family: 'Barlow', sans-serif;
}
.d-text-xl-regular {
  font: var(--regular) 20px/30px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-lg-regular {
  font: var(--regular) 18px/28px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-md-regular {
  font: var(--regular) 16px/24px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-sm-regular {
  font: var(--regular) 14px/20px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-xs-regular {
  font: var(--regular) 12px/18px var(--text-font-family);
  letter-spacing: normal;
}
.d-text-xl-medium {
  font: var(--medium) 20px/30px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-lg-medium {
  font: var(--medium) 18px/28px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-md-medium {
  font: var(--medium) 16px/24px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-sm-medium {
  font: var(--medium) 14px/20px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-xs-medium {
  font: var(--medium) 12px/18px var(--text-font-family);
  letter-spacing: normal;
}
.d-text-xl-semibold {
  font: var(--semibold) 20px/30px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-lg-semibold {
  font: var(--semibold) 18px/28px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-md-semibold {
  font: var(--semibold) 16px/24px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-sm-semibold {
  font: var(--semibold) 14px/20px var(--text-font-family);
  letter-spacing: -2%;
}
.d-text-xs-semibold {
  font: var(--semibold) 12px/18px var(--text-font-family);
  letter-spacing: normal;
}
.d-display-xl-regular {
  font: var(--regular) 20px/30px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-lg-regular {
  font: var(--regular) 18px/28px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-md-regular {
  font: var(--regular) 16px/24px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-sm-regular {
  font: var(--regular) 14px/20px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-xs-regular {
  font: var(--regular) 12px/18px var(--display-font-family);
  letter-spacing: normal;
}
.d-display-xl-medium {
  font: var(--medium) 20px/30px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-lg-medium {
  font: var(--medium) 18px/28px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-md-medium {
  font: var(--medium) 16px/24px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-sm-medium {
  font: var(--medium) 14px/20px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-xs-medium {
  font: var(--medium) 12px/18px var(--display-font-family);
  letter-spacing: normal;
}
.d-display-xl-semibold {
  font: var(--semibold) 20px/30px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-lg-semibold {
  font: var(--semibold) 18px/28px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-md-semibold {
  font: var(--semibold) 16px/24px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-sm-semibold {
  font: var(--semibold) 14px/20px var(--display-font-family);
  letter-spacing: -2%;
}
.d-display-xs-semibold {
  font: var(--semibold) 12px/18px var(--display-font-family);
  letter-spacing: normal;
}
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
:root {
  --icon-size-xs: 16px;
  --icon-size-s: 18px;
  --icon-size-m: 20px;
  --icon-size-l: 24px;
  --icon-size-tabbar: 28px;
  --icon-size-fab: 36px;
}
:root {
  --border-radius-xs: 1px;
  --border-radius-s: 4px;
  --border-radius: 6px;
  --border-radius-l: 8px;
  --border-radius-xl: 12px;
  --border-radius-round: 999px;
}
:root {
  --border-thickness-none: none;
  --border-thickness-s: 1px solid;
  --border-thickness-m: 2px solid;
  --border-thickness-l: 4px solid;
  --border-thickness-xl: 6px solid;
}
:root {
  --color-grey25: #fcfcfd;
  --color-grey50: #f9fafb;
  --color-grey100: #f2f4f7;
  --color-grey200: #e4e7ec;
  --color-grey300: #d0d5dd;
  --color-grey400: #98a2b3;
  --color-grey500: #667085;
  --color-grey600: #475467;
  --color-grey700: #344054;
  --color-grey800: #1d2939;
  --color-grey900: #101828;
  --color-blue25: #f5faff;
  --color-blue50: #e4eefb;
  --color-blue100: #d2e3f9;
  --color-blue200: #aeccf4;
  --color-blue300: #8ab5ef;
  --color-blue400: #669fea;
  --color-blue500: #4388e5;
  --color-blue600: #1e6fdc;
  --color-blue700: #185bb4;
  --color-blue800: #13468b;
  --color-blue900: #0d3263;
  --color-success25: #f6fef9;
  --color-success50: #ecfdf3;
  --color-success100: #d1fadf;
  --color-success200: #a6f4c5;
  --color-success300: #6ce9a6;
  --color-success400: #32d583;
  --color-success500: #12b76a;
  --color-success600: #039855;
  --color-success700: #027a48;
  --color-success800: #05603a;
  --color-success900: #054f31;
  --color-error25: #fffbfa;
  --color-error50: #fef3f2;
  --color-error100: #fee4e2;
  --color-error200: #fecdca;
  --color-error300: #fda29b;
  --color-error400: #f97066;
  --color-error500: #f04438;
  --color-error600: #d92d20;
  --color-error700: #b42318;
  --color-error800: #912018;
  --color-error900: #7a271a;
  --color-warn25: #fffcf5;
  --color-warn50: #fffaeb;
  --color-warn100: #fef0c7;
  --color-warn200: #fedf89;
  --color-warn300: #fec84b;
  --color-warn400: #fdb022;
  --color-warn500: #f79009;
  --color-warn600: #dc6803;
  --color-warn700: #b54708;
  --color-warn800: #93370d;
  --color-warn900: #7a2e0e;
  --color-purple25: #fafaff;
  --color-purple50: #f4f3ff;
  --color-purple100: #ebe9fe;
  --color-purple200: #d9d6fe;
  --color-purple300: #bdb4fe;
  --color-purple400: #9b8afb;
  --color-purple500: #7a5af8;
  --color-purple600: #6938ef;
  --color-purple700: #5925dc;
  --color-purple800: #4a1fb8;
  --color-purple900: #3e1c96;
  --color-cyan25: #f5feff;
  --color-cyan50: #ecfdff;
  --color-cyan100: #cff9fe;
  --color-cyan200: #a5f0fc;
  --color-cyan300: #67e3f9;
  --color-cyan400: #22ccee;
  --color-cyan500: #06aed4;
  --color-cyan600: #088ab2;
  --color-cyan700: #0e7090;
  --color-cyan800: #155b75;
  --color-cyan900: #164c63;
  --color-white: #fff;
  --color-black: #000;
  --color-modal-background: rgba(16, 24, 40, 0.5);
  --color-transparent: transparent;
}
:global(.disabled, [disabled]) {
  opacity: 1 !important;
}
:root {
  --shadow-xs: 0px 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0px 1px 2px rgba(16, 24, 40, 0.03), 0px 1px 2px rgba(16, 24, 40, 0.1);
  --shadow-md: 0px 2px 4px -2px rgba(16, 24, 40, 0.06), 0px 4px 8px -2px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
  --shadow-xl: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  --shadow-2xl: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
  --filter-xs: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.05));
  --filter-sm: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.03)) drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.1));
  --filter-md: drop-shadow(0px 2px 4px rgba(16, 24, 40, 0.06)) drop-shadow(0px 4px 8px rgba(16, 24, 40, 0.1));
  --filter-lg: drop-shadow(0px 4px 6px rgba(16, 24, 40, 0.03)) drop-shadow(0px 12px 16px rgba(16, 24, 40, 0.08));
  --filter-xl: drop-shadow(0px 8px 8px rgba(16, 24, 40, 0.03)) drop-shadow(0px 20px 24px rgba(16, 24, 40, 0.08));
  --filter-2xl: drop-shadow(0px 24px 48px rgba(16, 24, 40, 0.18));
}
.d-chart {
  border: var(--border-thickness-s);
  border-radius: var(--border-radius);
  border-color: var(--color-grey200);
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.d-chart .d-chart-content {
  flex: 1 1 auto;
  display: flex;
}
.d-chart .d-chart-content.column {
  flex-direction: column;
}
.d-chart .d-chart-content .overflow {
  overflow: auto;
  flex: 1 1 auto;
  order: 2;
}
.d-chart .d-chart-content .overflow.top {
  order: 1;
}
.d-chart .d-chart-content ::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
.d-chart .d-chart-content ::-webkit-scrollbar-track {
  border-radius: var(--border-radius);
  background-color: var(--color-grey100);
}
.d-chart .d-chart-content ::-webkit-scrollbar-thumb {
  border-radius: var(--border-radius);
  background-color: var(--color-grey300);
}
.d-chart .d-chart-content .d-chart-legend-bottom {
  flex: 0 0 auto;
}
.d-chart-header {
  border-bottom: var(--border-thickness-s);
  border-color: var(--color-grey200);
  text-align: initial;
  padding: 16px;
}
.d-chart-header h2 {
  color: var(--color-grey800);
  font: var(--semibold) 20px/30px var(--text-font-family);
  letter-spacing: -2%;
  padding: 0;
  margin: 0;
}
.d-chart-buttonbar {
  position: relative;
  height: 0px;
}
.d-chart-buttonbar div {
  right: 0;
  position: absolute;
  display: flex;
  justify-content: right;
  padding: 12px;
}
.d-chart-button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.d-chart-button span {
  font-size: var(--icon-size-l);
}
.d-chart-label {
  font: var(--regular) 12px/18px var(--text-font-family);
  letter-spacing: normal;
  color: var(--color-grey500);
}
.d-chart-label span {
  display: inline-block;
}
.d-chart-legend-bottom,
.d-chart-legend-top {
  padding-left: 100px;
  display: flex;
  white-space: nowrap;
  flex-wrap: wrap;
}
.d-chart-legend-bottom {
  order: 2;
}
.d-chart-legend-top {
  order: 1;
  padding-bottom: 16px;
  justify-content: center;
}
.d-chart-legend-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
.d-chart-legend-right .d-chart-legend-node {
  text-align: left;
}
.d-chart-legend-node {
  font: var(--regular) 14px/20px var(--text-font-family);
  letter-spacing: -2%;
}
.d-chart-legend-node .d-chart-legend-node-bubble {
  border-radius: var(--border-radius-s);
  height: 12px;
  width: 16px;
  display: inline-block;
  margin-right: 6px;
}
.d-chart-legend-node .d-chart-legend-node-bubble + span {
  color: var(--color-black);
}
.d-chart-tooltip-title {
  font: var(--semibold) 12px/18px var(--text-font-family);
  letter-spacing: normal;
  color: var(--color-grey700);
}
.d-chart-tooltip-subtitle {
  font: var(--regular) 12px/18px var(--text-font-family);
  letter-spacing: normal;
  color: var(--color-grey500);
}
.d-bar-text {
  font: var(--semibold) 14px/20px var(--text-font-family);
  letter-spacing: -2%;
  display: block;
}
.d-outer-lines,
.d-inner-lines {
  stroke: var(--color-grey200);
}
.d-hidden-line {
  stroke: transparent;
}
path.line {
  color: transparent;
}
path.line.gradient {
  opacity: 1;
}
path.line.shadow {
  filter: var(--filter-md);
}
path.area {
  color: transparent;
  opacity: 0.2;
}
path.area.gradient {
  opacity: 0.8;
}

.reportGeneralAlerta {
  position: relative;
  & .main-alerta {
    position: absolute !important;
    height: 100% !important;
    & .alerta {
      background: rgba(255, 255, 255, 0.8);
      width: 100% !important; /* //calc(100% - 68px); */
      height: 100% !important; /* //calc(100vh - 234px); */
      & p {
        margin-bottom: 0px !important;
      }
    }
  }
}

.divTable {
  height: auto !important;
}

@media screen and (min-width: 768px) {
  .table-1 .divTable {
    height: calc(50dvh - 76px) !important;
  }
  .table-2 .divTable {
    height: calc(50dvh - 138px) !important;
  }
}

@media screen and (min-width: 1019px) {
  .table-2 .divTable {
    height: calc(50dvh - 105px) !important;
  }
}

.report-stock {
  width: 100%;

  & > div {
    width: 100%;
    height: calc(50vh - 90px);
    position: relative;

    & .contentTable {
      height: 90%;

      & .contentTableScroll {
        height: 100%;

        & .divTable {
          margin: 0;
          height: calc(100% - 100px) !important;
        }
      }
    }
  }

  .stock-table-md {
    height: max-content;
    & .contentTable {
      height: max-content;

      & .contentTableScroll {
        height: 100%;

        & .divTable {
          margin-bottom: 12px;

          /*  //height: calc(-275px + 100vh) !important; */
        }
      }
    }
  }

  .stock-md {
    height: 500px;
  }
}

.alerta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(92, 107, 192);
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.stocksDetailTabla {
  & .contentTable {
    height: calc(100vh - 234px);

    & .contentTableScroll {
      height: 100% !important;

      & .divTable {
        margin: 0;
        height: calc(100% - 100px) !important;
      }

      &.table-navigation-container {
      }
    }
  }
}

.total {
  padding-top: 12px;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  justify-content: end;
}
.report-garantias {
  width: 100%;

  & > div {
    width: 100%;
  }
}

.report-cards {
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 8px;
  background: var(--ui-grey-bw-white, #fff);
  gap: 16px;

  .report-card:nth-last-child(-n + 1) {
    margin-top: auto;
    margin-left: auto;
    width: 30%;
    border: none;
    place-content: flex-end;
    gap: 12px;
    padding-right: 1px;
  }
}

.report-garantias-details {
  position: relative;
  height: calc(100vh - 16px);

  padding: 12px;
  height: calc(100% - 66px);

  .table-header {
    width: calc(100% - 56px);
    top: 24px;
  }

  /*  & .contentTable {
    height: calc(100% - 40px);

    & .divTable {
      margin: 0;
      height: calc(100% - 100px) !important;
    }

    & .contentTableScroll {
      height: 100%;
    }
  } */

  &.avales td:nth-last-child(-n + 3),
  &.avales th:nth-last-child(-n + 2) {
    text-align: right !important;
  }

  &.prendas td:nth-last-child(-n + 5),
  &.prendas th:nth-last-child(-n + 4) {
    text-align: right !important;
  }

  &.transferencias td:nth-last-child(-n + 4),
  &.transferencias th:nth-last-child(-n + 3) {
    text-align: right !important;
  }

  &.devoluciones td:nth-last-child(-n + 4),
  &.devoluciones th:nth-last-child(-n + 3) {
    text-align: right !important;
  }

  &.cargasPropias td:nth-last-child(-n + 4),
  &.cargasPropias th:nth-last-child(-n + 3) {
    text-align: right !important;
  }

  &.garantiaSalidaSuspensivoPropia td:nth-last-child(-n + 4),
  &.garantiaSalidaSuspensivoPropia th:nth-last-child(-n + 3) {
    text-align: right !important;
  }

  &.ordenesPendientes td:nth-last-child(-n + 4),
  &.ordenesPendientes th:nth-last-child(-n + 3) {
    text-align: right !important;
  }

  &.garantiaSalidaSuspensivoOrdenesPendientes td:nth-last-child(-n + 4),
  &.garantiaSalidaSuspensivoOrdenesPendientes th:nth-last-child(-n + 3) {
    text-align: right !important;
  }
}

.cargasPropias {
  & .contentTable {
    height: calc(100% - 180px);
    & .divTable {
      margin: 0 0 24px 0;
      height: calc(100% - 120px) !important;
    }

    & .contentTableScroll {
      height: 100%;
    }
  }
}

.report-content.report-garantias {
  position: relative;
  .main-alerta {
    height: 100% !important;
    position: absolute !important;
    .alerta {
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.8);
    }
  }

  .report-cards .report-card:nth-last-child(-n + 1) {
    padding-right: 1rem;
    min-width: fit-content;
  }
}

.report-movimientos {
  width: 100%;
  gap: 0;
  height: 100%;

  & > div {
    width: 100%;
  }

  .table-movimientos-almacen,
  .table-movimientos {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    .d-chart-header.table-header h2 {
      max-width: calc(100% - 62px);
      text-overflow: ellipsis;
      text-wrap: nowrap;
      overflow: hidden;
    }

    .table-bar {
      gap: 4px;
      .table-button-container {
        gap: 1px;
        margin-bottom: 8px;
        button {
          padding: 6px;
        }
      }
    }

    .trTotal {
      display: flex;
      border-bottom: solid 1px rgba(151, 159, 161, 0.2) !important;
      td,
      td {
        display: none;
      }
      td:first-child {
        display: table-cell;
      }
      td:nth-last-child(2) {
        display: none !important;
      }
      td:nth-last-child(3) {
        display: table-cell;
        border: none;
      }
    }
  }

  .contentTable {
    flex-grow: 1;
    overflow: hidden;

    .contentTableScroll {
      flex-grow: 1;
      overflow: auto;
      display: flex;
      flex-direction: column;
    }
  }

  .divTable {
    flex-grow: 1;
    margin: 0;
    height: calc(100% - 115px) !important;
  }
}

@media screen and (min-width: 1276px) {
  .report-movimientos {
    .table-movimientos-almacen,
    .table-movimientos {
      .trTotal {
        display: table-row;
        border-bottom: none !important;
        td,
        td {
          display: table-cell;
        }
        td:nth-last-child(2) {
          display: table-cell !important;
        }
      }
    }
  }
}

.filtrosContainer {
  &.movimientos {
    .MuiFormControl-root:nth-child(1) {
      flex-basis: 100px;
    }
    .MuiFormControl-root:nth-child(2) {
      flex-basis: 200px;
    }
    .MuiFormControl-root:nth-child(3) {
      flex-basis: 200px;
    }
    .MuiFormControl-root:nth-child(4) {
      flex-basis: 200px;
    }
    .MuiFormControl-root:nth-child(5) {
      flex-basis: 250px;
    }

    @media screen and (min-width: 1100px) and (max-width: 1280px) {
      .MuiFormControl-root:nth-child(4) {
        flex-basis: 30%;
      }
      .MuiFormControl-root:nth-child(5) {
        flex-basis: 30%;
      }
      .MuiFormControl-root:nth-child(6) {
        flex-basis: 30%;
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .report-content.report-movimientos {
    .table-bar {
      gap: 4px;
      .table-button-container {
        gap: 12px;
        margin-bottom: 8px;
        button {
          padding: 8px;
        }
      }
    }
  }
}

.report-content > div {
  width: 100%;
}

.report-albaranes {
  width: 100%;
  min-width: 100%;
  gap: 0;
}

.table-header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  button {
    height: 36px;
    top: -3px;
    margin-right: 118px;
    &.MuiButton-root {
      .MuiButton-label {
        gap: 8px;
      }

      &.MuiButton-rootBlue:hover {
        background-color: rgb(245, 245, 245);
        border: 1.5px solid rgb(238, 238, 238) !important;
      }

      &.MuiButton-outlinedPrimary {
        color: black;
        background-color: white;
        border: 1.5px solid #eeeeee;
      }
    }
  }
}

@media only screen and (max-width: 760px) {
  .table-header-content {
    button {
      &.MuiButton-root {
        font-size: 0px;
        padding: 8px;
        margin-right: 44px;
        min-width: 36px;

        .MuiButton-label {
          gap: 0;
        }
        span {
          margin: 0px;
          padding: 0px;
        }
      }
    }
  }
}

.report-content.report-albaranes {
  .contentTable {
    width: calc(100% - 26px);
  }
}

.table-ordenes {
  width: 100%;
  position: relative;
  .d-text-xl-semibold {
    font: var(--semibold) 20px/30px var(--text-font-family) !important;
  }

  .contentTableScroll {
    height: 100% !important;
  }

  .contentTable {
    margin-bottom: 0px !important;
    height: 200px !important;
  }

  .divTable {
    margin: 0;
    height: 144px !important;
  }
}

.table-depositos {
  width: 100%;
  position: relative;

  .d-text-xl-semibold {
    font: var(--semibold) 20px/30px var(--text-font-family) !important;
  }

  .contentTableScroll {
    height: 100% !important;
  }

  .contentTable {
    height: 295px !important;
  }

  .divTable {
    margin: 0;
    height: 238px !important;
  }
}

.reportEstadosCarga-detail-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  button {
    height: 36px;
    &.MuiButton-root {
      &.MuiButton-rootBlue:hover {
        background-color: rgb(245, 245, 245);
        border: 1.5px solid rgb(238, 238, 238) !important;
      }

      &.MuiButton-outlinedPrimary {
        color: black;
        background-color: white;
        border: 1.5px solid #eeeeee;
      }
    }
  }
}

@media only screen and (max-width: 500px) {
  .reportEstadosCarga-detail-header {
    button {
      &.MuiButton-root {
        font-size: 0px;
        padding: 8px;
        min-width: 36px;

        .MuiButton-label {
          gap: 0;
        }
        span {
          margin: 0px;
          padding: 0px;
        }
      }
    }
  }
}

.MuiStep-root.disabled {
  background-color: transparent;
}
.MuiStepper-vertical {
  gap: 1rem;

  .MuiStep-root.MuiStep-vertical {
    display: flex;
    gap: 1rem;
    align-items: center;
    .MuiStepConnector-vertical {
      position: absolute;
      top: -17px;
      left: 0px;
    }
    .iconContainer {
      order: 1;
      height: auto;
      width: auto;
      .icon {
        margin-top: 0;
        position: relative;
      }
    }
    .MuiStepLabel-root.MuiStepLabel-vertical {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      .MuiStepLabel-label {
        margin-top: auto;
      }
    }
  }
}

.table-depositos,
.table-ordenes {
  .contentTable {
    height: auto !important;
  }
  .divTable {
    height: auto !important;
  }
  table td {
    width: calc(100dvw - 88px) !important;
  }
}

@media screen and (min-width: 768px) {
  .table-depositos,
  .table-ordenes {
    table {
      td {
        width: calc(100% - 24px) !important;
      }
    }
  }
}

.report-content > div {
  position: relative;
}

.report-estado-cargas {
  width: 100%;

  /* & > div {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    & .contentTable {
      height: 90%;

      & .contentTableScroll {
        height: 100%;

        & .divTable {
          margin: 0;
          height: calc(100% - 60px) !important;
        }
      }
    }
  } */
}

.table-header {
  position: absolute;
  width: calc(100% - 32px);
  top: 13px;
}

.report-content.report-estado-cargas {
  position: relative;
  min-height: 400px;
  .main-alerta {
    height: 100% !important;
    position: absolute !important;
    .alerta {
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.8);
    }
  }

  .d-chart-header.table-header {
    .d-text-xl-semibold {
      max-width: calc(100% - 125px);
      text-overflow: ellipsis;
      text-wrap: nowrap;
      overflow: hidden;
    }
  }
  .table-bar {
    gap: 4px;
    .table-button-container {
      gap: 1px;
      margin-bottom: 8px;
      button {
        padding: 6px;
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .report-content.report-estado-cargas {
    .table-bar {
      gap: 4px;
      .table-button-container {
        gap: 12px;
        margin-bottom: 8px;
        button {
          padding: 8px;
        }
      }
    }
  }
}

.roleProfileContainer {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  padding-top: 0.875rem;
}

.accordion-header,
.accordion-addons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.notifications-header-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.obs_comp_horario {
  border-radius: 5em;
  padding: 0.2em 0.8em;
  display: flex;
  align-items: flex-start;
  text-align: center;
  margin-bottom: 0.5em;
  width: max-content;

  &.yellow {
    color: #ffc400;
    background-color: #fff8e1;
  }

  &.orange {
    color: #f48636;
    background-color: #fff8eb;
  }

  &.blue {
    color: #1a237e;
    background-color: #e8eaf6;
  }

  &.red {
    color: #f44336;
    background-color: #ffebee;
  }

  &.gray {
    color: #9e9e9e;
    background-color: #f5f5f5;
  }

  &.greenDark {
    color: #028739;
    background-color: #dff6e1;
  }

  &.greenLight {
    color: #00c853;
    background-color: #e8f5e9;
  }
}

.icon {
  display: inline-flex;
  width: 24px;
  justify-content: center;
}
.adoon-documentation {
  display: flex;
  align-items: end;
  justify-content: end;
  width: 300px;
  /* padding-right: 1rem; */

  .adoon-documentation--section {
    display: flex;
    align-items: center;
    width: 7.5rem;
    justify-content: end;
    gap: 0.5rem;

    &.--right {
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      margin-left: 1rem;
    }

    .noMarginObs {
      .obs_comp {
        margin: 0;
      }
    }

    .title {
      color: #78909c;
      font-weight: 600;
    }
  }
}

.numbersDucumentation {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
  display: flex;
  justify-content: end;
  gap: 0.5rem;
  align-items: end;
  padding-right: 0.5rem;

  .numbersDocumentation--element {
    display: flex;
    justify-content: end;
    width: 7.5rem;

    &.--right {
      padding-left: 0.5rem;
    }
  }
}

@media (min-width: 375px) {
  .adoon-documentation {
  }
}

.obs_comp_documents {
  border-radius: 5em;
  padding: 0.2em 0.8em;
  display: flex;
  align-items: center;
  text-align: center;
  width: max-content;

  &.yellow {
    color: #ffc400;
    background-color: #fff8e1;
  }

  &.orange {
    color: #f48636;
    background-color: #fff8eb;
  }

  &.blue {
    color: #1a237e;
    background-color: #e8eaf6;
  }

  &.red {
    color: #f44336;
    background-color: #ffebee;
  }

  &.gray {
    color: #9e9e9e;
    background-color: #f5f5f5;
  }

  &.greenDark {
    color: #028739;
    background-color: #dff6e1;
  }

  &.greenLight {
    color: #00c853;
    background-color: #e8f5e9;
  }
}

.percent-bar-animated {
  transform: translateX(-8px);
  animation: percent-bar-animation 7s infinite cubic-bezier(0.4, 0, 1, 1);
  animation-delay: var(--delay-percent-bar);
}

@keyframes percent-bar-animation {
  0% {
    transform: translateX(-8px);
  }
  100% {
    cx: var(--max-percent-bar);
    transform: translateX(calc(var(--max-percent-bar) - 8px));
  }
}

.tank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 62px;
  z-index: 1;
  span {
    @apply font-medium;
  }

  text {
    @apply font-medium text-xs;
  }
}

@media (min-width: 768px) {
  .tank {
    width: 100px;
  }
}

@keyframes progress-animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.fill {
  y: var(--fill-percent);
}

.fill--animated {
  animation: fill-animation 7s linear infinite;
  position: absolute;
}

.fill--unload {
  animation: fill-animation-unload 7s linear infinite;
}

@keyframes fill-animation {
  0% {
    y: 90%;
  }
  100% {
    y: 10%;
  }
}

@keyframes fill-animation-unload {
  0% {
    y: 10%;
  }
  100% {
    y: 90%;
  }
}

.badge {
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  background-color: rgb(0, 170, 255);
  color: white;
  border: solid 1px rgb(0, 170, 255);
  text-wrap: nowrap;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
}
.badge--acabado {
  color: green;
  background-color: #e8f5e9;
  border: solid 1px #e8f5e9;
}

.badge--en-curso {
  color: #f48636;
  background-color: #fff8eb;
  border: solid 1px #fff8eb;
}

.badge--pendiente,
.badge--producto {
  color: #1a237e;
  background-color: #e8eaf6;
  border: solid 1px #e8eaf6;
}

.badge--activo {
  color: #fff;
  background-color: #00c853;
  border: solid 1px #00c853;
}

.badge--inactivo {
  color: #dee1e4;
  background-color: #fff;
  border: solid 1px #dee1e4;
}

.listDetallada {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .listDetallada {
    grid-template-columns: 1fr 1fr;
  }

  .listDetallada :nth-last-child(1) {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1440px) {
  .listDetallada {
    grid-template-columns: 2fr 2fr 4fr;
  }

  .listDetallada :nth-last-child(1) {
    grid-column: auto !important;
  }
}

.red {
  color: red !important;
}

.green {
  color: green !important;
}
.itemContainer {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  align-items: center;
  width: fit-content;
}

.statusItem span {
  font-weight: bold;
}
.obs_comp_archivo {
  border-radius: 0.375em;
  padding: 0.125em 0.375em;
  display: flex;
  align-items: flex-start;
  text-align: center;
  width: max-content;

  &.orange {
    color: #ff9800;
    background-color: #fff3e0;
  }

  &.green {
    color: #4caf50;
    background-color: #e8f5e9;
  }

  &.red {
    color: #f44336;
    background-color: #ffebee;
  }
}

.plusIcon {
  font-size: 0.875rem;
  background-color: rgb(92, 107, 192);
  color: white;
  padding: 6px 14px;
  display: flex;
  text-transform: initial;
  white-space: nowrap;
  font-weight: 400;
  box-shadow: none;
  min-width: 64px;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.75;
  border-radius: 4px;
  letter-spacing: 0.02857em;
  border: 0;
  cursor: pointer;
  margin: 0;
  outline: 0;
  position: relative;
  align-items: center;
  user-select: none;
  vertical-align: middle;
  justify-content: center;
  text-decoration: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.plusIconLabel {
  width: 100%;
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
}


.minusIcon {
  font-size: 0.875rem;
  background-color: rgb(244 67 54);
  color: white;
  padding: 6px 14px;
  display: flex;
  text-transform: initial;
  white-space: nowrap;
  font-weight: 400;
  box-shadow: none;
  min-width: 64px;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.75;
  border-radius: 4px;
  letter-spacing: 0.02857em;
  border: 0;
  cursor: pointer;
  margin: 0;
  outline: 0;
  position: relative;
  align-items: center;
  user-select: none;
  vertical-align: middle;
  justify-content: center;
  text-decoration: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.minusIconLabel {
  width: 100%;
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
}


.card{
  display: flex;
  flex-direction: column;
  background-color: var(--card-background-color);
  border-radius: var(--card-border-radius);
  border: var(--card-border);
  box-shadow: var(--card-box-shadow);
  padding: var(--card-padding);
  margin: var(--card-margin);
}
.progressbar-container {
  margin-top: -2px;
  margin-bottom: -10px;
  padding-right: 10px;
  .progressbar-title {
    margin-left: 1px;
    color: #212121;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
  }
  .progressbar-subtitle {
    margin-left: 1px;
    color: #5c6bc0;
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    padding: 5px 0;

    &.grey {
      color: #eeeeee;
    }
    &.green {
      color: #00c853;
    }
    &.red {
      color: #f44336;
    }
    &.yellow {
      color: #ffc400;
    }
  }

  .progressbar-progress {
    text-align: left;
    gap: 4px;
    display: flex;
    margin-top: 5px;
    height: 11px;
  }

  .progressbar-progress_element {
    width: 12px;
    height: 2px;
    display: inline-block;
    position: relative;

    &.blue {
      background-color: #1a237e;
    }
    &.grey {
      background-color: #eeeeee;
    }
    &.green {
      background-color: #00c853;
    }
    &.red {
      background-color: #f44336;
    }
    &.yellow {
      background-color: #ffc400;
    }
  }
}

@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .progressbar-container {
    text-align-last: end;
    .progressbar-progress {
      place-content: flex-end;
    }
  }
}

.progressBar_align {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media only screen and (max-width: 760px) {
  .progressBar_align {
    flex-direction: column;
  }
}

.productosNominaciones {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
}

@media only screen and (max-width: 767px),
  (min-device-width: 769px) and (max-device-width: 1023px) {
  .productosNominaciones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.obs_comp_cisterna {
  border-radius: 5em;
  padding: 0.2em 0.8em;
  display: flex;
  align-items: center;
  text-align: center;
  width: max-content;

  &.green {
    color: #028739;
    background-color: #dff6e1;
  }

  &.gray {
    color: #6c757d;
    background-color: #e8eaf6;
  }
}

.politica-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

.section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 5px;
}

.section-content p {
  margin-bottom: 12px;
  text-align: justify;
}

.subsection {
  margin-bottom: 25px;
}

.subsection-title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.policy-list {
  margin-left: 20px;
  margin-bottom: 12px;
}

.policy-list-item {
  text-align: justify;
  margin-bottom: 6px;
}

.last-update {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}

.policy-link {
  color: #1a237e;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px; /* Slightly smaller font for better fit */
  min-width: 600px; /* Ensure minimum width for readability */
}

.policy-table-header,
.policy-table-cell {
  border: 1px solid #ddd;
  padding: 10px 8px; /* Slightly tighter padding */
  text-align: left;
  vertical-align: top;
  word-wrap: break-word; /* Allow long words to break */
}

.policy-table-header {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #1a237e; /* Match theme color */
}

.policy-table-row:nth-child(even) {
  background-color: #fafafa;
}

.policy-table-row .policy-table-cell:nth-last-child(2) {
  display: revert !important;
}

/* Responsividad para tablas */
@media screen and (max-width: 768px) {
  .policy-table {
    min-width: auto;
  }

  .policy-table-head {
    display: none; /* Hide headers on mobile */
  }

  .policy-table-row {
    display: block;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background: #fff !important;
    border-radius: 8px;
    overflow: hidden;
  }

  .policy-table-header[scope="row"],
  .policy-table-cell {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 12px 10px;
    position: relative;
    padding-left: 10px; /* Reset padding for mobile */
    text-align: left;
  }

  .policy-table-header[scope="row"] {
    background-color: #f0f2f5;
    color: #1a237e;
    font-size: 15px;
    border-bottom: 2px solid #1a237e;
  }

  .policy-table-cell:before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    color: #1a237e;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  .policy-table-cell:last-child {
    border-bottom: none;
  }

  .subsection-content {
    overflow-x: visible; /* no scroll needed if stacked */
  }
}

.subsection-content {
  overflow-x: auto;
  border-radius: 4px;
}

ol.alpha-list {
  list-style-type: lower-alpha;
}

ol.alpha-list li::marker {
  content: counter(list-item, lower-alpha) ") ";
  text-align: right;
}
ol.alpha-list li {
  text-align: start;
}

.filters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 12px;
}

@media (min-width: 768px) {
  .filters-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

.filtrosInforme {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .filtrosInforme {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .filtrosInforme :nth-last-child(2) {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1440px) {
  .filtrosInforme {
    grid-template-columns: 2fr 2fr 2fr 4fr 1fr;
  }

  .filtrosInforme :nth-last-child(2) {
    grid-column: auto !important;
  }
}

.obs_comp_facturas {
  border-radius: 5em;
  padding: 0.2em 0.8em;
  display: flex;
  align-items: center;
  text-align: center;
  width: max-content;

  &.greenLight {
    color: #00c853;
    background-color: #e8f5e9;
  }

  &.red {
    color: #f44336;
    background-color: #ffebee;
  }
}

.filtrosFacturas {
  display: flex;
  flex-direction: row;
  height: 5rem;
  padding: 1rem 0;
  border-bottom: solid 0.1rem #f5f5f5;
  column-gap: 1rem;
}
.filtrosFacturas .decal-autocompleteKeyValue {
  width: 25rem;
}
.filtrosFacturas .decal-dateRangePicker {
  width: 32rem;
}
.filtrosFacturas .decal-switch {
  width: 15rem;
  margin: 0.8rem 1rem 0 1rem;
}
.filtrosFacturas .decal-switch .MuiFormLabel-root {
  white-space: nowrap;
}

.tank-container {
  background: #eef1f4;
  box-shadow: 0px 0px 1.1875px rgba(0, 0, 0, 0.25);
  border-radius: 17.8125px;

  /* Auto layout interior */
  flex: none;
  order: 1;
  flex-grow: 1;
  position: relative;

  & > .tank-progress {
    background-color: #00c853;
    position: absolute;
    height: 100%;
    border-top-left-radius: 17.8125px;
    border-bottom-left-radius: 17.8125px;

    &.carga {
      background-color: #5cd3bb;
    }
    &.descarga {
      background-color: #d3995c;
    }
    &.full {
      border-top-right-radius: 17.8125px;
      border-bottom-right-radius: 17.8125px;
    }
  }

  & > .tank-info {
    width: calc(100% - 1.75rem);
    height: calc(100% - 0.75rem);
    padding: 0 0.5rem;
    margin: 0.375rem;
    background: #ffffff;
    box-shadow: 0px 2.96875px 2.96875px rgba(0, 0, 0, 0.25);
    border-radius: 11.875px;
    position: absolute;
    z-index: 1;
  }
}

:has(> .operacion--selected) {
  position: relative;
  &:before {
    background: #5cd3bb;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    content: '';
    animation-name: selected;
    animation-duration: 5s;
  }

  &:has(.descarga):before {
    background: #d3995c;
  }
}

@keyframes selected {
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

.driver-reg-container {
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #353d70 0%, #070922 100%);
  margin-top: 64px;
  display: flex;
  height: 100%;
  overflow-x: hidden;

  .bg-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
  }
}

.driver-reg-card {
  background-color: #ffffff;
  border-radius: clamp(12px, 2vw, 24px);
  padding: clamp(16px, 3vh, 40px) clamp(16px, 3vw, 40px);
  width: 100%;
  max-width: 600px;
  max-height: calc(100% - 64px - 24px);
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.logos-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  margin-bottom: clamp(12px, 2vh, 30px);

  img {
    height: clamp(28px, 4vh, 48px);
    width: auto;
  }

  .divider {
    width: 2px;
    height: clamp(24px, 3vh, 40px);
    background-color: #e0e0e0;
  }
}

.welcome-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 3vh, 28px);
  font-weight: 700;
  color: #1a237e;
  margin: 0 0 clamp(4px, 1vh, 10px) 0;
  text-align: center;
}

.subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 1.5vh, 16px);
  color: #546e7a;
  margin: 0 0 clamp(12px, 3vh, 40px) 0;
  text-align: center;
}

.driver-reg-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vh, 20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1.5vh, 20px);
}

.form-section {
  width: 100%;
}

.form-field-half {
  width: 100%;
}

.text-field-with-button {
  display: flex;
  flex-direction: row;
  gap: clamp(8px, 1.5vh, 20px);
}

.submit-section {
  margin-top: clamp(8px, 1.5vh, 20px);
  width: 100%;

  .submit-button {
    width: 100%;
    background-color: #3f51b5;
    color: #ffffff;
    padding: clamp(8px, 1.5vh, 14px);
    font-size: clamp(14px, 2vh, 18px);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;

    &:hover {
      background-color: #303f9f;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(63, 81, 181, 0.3);
    }
  }
}

/* Override material-ui or custom decal-components if needed */
.full-width {
  width: 100% !important;
}

/* Mobile */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-field-half {
    width: 100%;
  }
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 4vh, 60px) 0;
  width: 100%;

  .success-icon {
    font-size: clamp(48px, 8vh, 80px);
    color: #4caf50;
    margin-bottom: clamp(12px, 2vh, 24px);
  }

  .error-icon {
    font-size: clamp(48px, 8vh, 80px);
    color: #f44336;
    margin-bottom: clamp(12px, 2vh, 24px);
  }

  .welcome-title {
    margin-bottom: clamp(20px, 4vh, 40px);
  }
}

@media print {
  body {
    zoom: 80%;
  }
}

.print-container {
  padding: 10mm;
  background-color: white;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.print-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.print-field__label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
}

.print-field__value {
  font-size: 15px;
  color: #111;
  min-height: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 2px;
}

.print-checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.print-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #555;
  border-radius: 4px;
  position: relative;
}

.print-checkbox--checked {
  background-color: #1976d2;
}

.print-checkbox__tick {
  color: white;
  position: absolute;
  top: -2px;
  left: 2px;
  font-size: 12px;
}

