.SideBarItem {
  display: flex;
  padding: 2px 9px 2px 9px;
  cursor: pointer;
  user-select: none;

  .SideBarContent {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .clicked {
    background-color: rgba(211, 217, 229, 0.25);
  }

  .label {
    background-color: transparent;
    border: none;
  }

  .subItemContainer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-left: 20px;
    border-left: 2px solid white;
  }

  .main {
    width: 100%;
    color: white;
    text-decoration: none;
    display: inline-flex;
    border-radius: 8px;
    font-weight: 400;

    .ancor {
      color: white;
      text-decoration: none;
      font-weight: 400;
    }

    &.main-subMenu:first-child {
      margin-top: 2px;
    }

    .collapsed {
      justify-content: center;
      width: 38px;
      padding: 6px;
    }
    .expanded {
      justify-content: left;
      width: 235px;
      padding: 6px;
      justify-content: space-between;
    }

    .ItemContent {
      display: inline-flex;
      flex-direction: row;
      overflow: hidden;
      white-space: nowrap;
      margin-left: -0.3px;

      .contentStart {
        display: flex;
        gap: 6px;

        .icon {
          padding: 6px;
          opacity: 1;
          width: 24px;
          height: 24px;
          text-align: center;
          margin-left: 0.5px;

          img {
            left: 22px;
            width: 24px;
            height: 24px;
          }
        }

        .label {
          justify-content: start;
          align-self: center;
          overflow: hidden;
          white-space: normal;
        }
      }

      .iconDropdown {
        align-self: center;

        &.reversed {
          transition: 0.3s ease-in;
          transform-style: preserve-3d;
          transform: scaleY(-1);
        }

        &.forward {
          transition: 0.3s ease-in;
          transform-style: preserve-3d;
          transform: scaleY(1);
        }
      }

      &:hover {
        background-color: rgba(211, 217, 229, 0.25);
        border-radius: 8px;
        margin-left: -0.3px;

        & + .tooltip {
          align-self: center;
          display: inline-block;
          animation-duration: 0.4s;
          animation-name: tooltip;
        }
      }
    }

    .subItem {
      display: flex;
      flex-direction: row;
      align-items: center;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 8px;

      &.clicked {
        background-color: rgba(211, 217, 229, 0.25);
        border-radius: 0 8px 8px 0;
      }

      .icon {
        display: none;
        flex-direction: row-reverse;
        width: 16%;
        height: 100%;

        &.showIcon {
          display: block;
          height: inherit;
          padding-left: 10px;
        }
      }

      .label {
        padding: 10px;
        width: 218px;
        font-weight: 400;
        font-size: 15px;
        justify-content: left;
        text-wrap: wrap;
        white-space: normal;
      }

      &:hover {
        background-color: rgba(211, 217, 229, 0.25);
        border-radius: 0 8px 8px 0;
      }
    }
  }

  .tooltip {
    position: fixed;
    display: none;
    background-color: black;
    font-size: 13px;
    font-weight: 300;
    left: 64px;
    margin: -38px 0px -38px 0px;
    padding: 3px 8px;
    border-radius: 8px;
    white-space: nowrap;
  }

  @keyframes tooltip {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

@media (max-width: 600px) {
  .SideBarItem {
    .ItemContent {
      &.collapsed {
        display: none;
      }
    }
  }
}

.page-header-container {
  display: flex;
  flex-flow: column;
  margin-bottom: 8px;
  gap: 16px;

  h2 {
    margin: 0;
  }
  .menu-button {
    display: flex;
    flex-flow: column;
    .MuiButton-label {
      justify-content: space-between !important;
      padding-right: 4px;
    }
  }
}

@media screen and (min-width: 768px) {
  .page-header-container {
    flex-flow: row;
    justify-content: space-between;
  }
}

.datosDossier-cotainer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
  padding: 0;
}

:root {
  --table-body-background-color: white;
  --table-body-row-selected-background-color: #f5f5f5;
  --table-header-background-color: #f9f9fb;
  --table-border-color: #f5f5f5;
  --table-header-color: #979a9d;
}

.decal-table-main {
  width: calc(100% - 2px);
  max-height: 100%;
  border: 1px solid var(--table-border-color);
  border-radius: 0.5rem;
  overflow: auto;
}

.decal-table {
  width: 100%;
  .decal-table-header {
    .header-row {
      border: none;

      .header-row-cell {
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0;
        background-color: var(--table-header-background-color);
        text-wrap: nowrap;

        .cell-content {
          display: flex;
          padding: 0.6rem 0.5rem;
          color: var(--table-header-color);
          font-weight: 400;
        }
      }
    }
  }

  .decal-table-body {
    .body-row {
      background-color: var(--table-body-background-color);
      padding: 0;

      &.selectable {
        cursor: pointer;
      }

      &.selected {
        background-color: var(--table-body-row-selected-background-color);
      }

      .body-row-cell {
        padding: 0;
        font-size: 0.875rem;
        text-wrap: nowrap;

        .cell-content {
          display: flex;
          padding: 0.6rem 0.5rem;
        }
      }
    }

    .body-row:last-child {
      border: none;
    }
  }

  /* sobreescribir estilos antiguos tabla decal-components */
  tr td:nth-last-child(2) {
    display: table-cell;
  }
}

.noContent-row {
  background-color: var(--table-body-background-color);
  /* sobreescribir estilos antiguos tabla decal-components */
  border: none !important;
  &:hover {
    background-color: var(--table-body-background-color);
  }
  .noContent-cell {
    display: flex;
    width: 100%;
    justify-content: center;
    border: none;
    background-color: var(--table-body-background-color);

    &:hover {
      background-color: var(--table-body-background-color);
    }
  }
}

.decal-table-main {
  /* SOBREESCRIBIR OTROS ESTILOS */

  @media only screen and (max-width: 1023px), (min-device-width: 1023px) and (max-device-width: 1280px) {
    table {
      display: table;
      table-layout: auto;
      overflow: auto;
    }
    table thead {
      display: table-header-group;
    }

    table tr {
      display: table-row;
      border: inherit;
      border-radius: inherit;
      border-bottom-width: inherit;
      margin-bottom: inherit;
      padding: inherit !important;
    }
    table td {
      display: table-cell;
      justify-content: inherit;
      width: inherit !important;
      overflow: inherit;
      text-overflow: inherit;
      white-space: inherit;
      max-width: inherit;
      border-top: inherit;
      flex-direction: inherit;
      padding: inherit !important;
    }

    table td::before {
      content: inherit;
      color: inherit;
      width: inherit;
      min-width: inherit;
    }
    tr td:first-child {
      border-top: table-cell;
    }

    tr td:last-child {
      display: table-cell;
    }

    tr td:nth-last-child(2) {
      display: table-cell;
      text-decoration: inherit;
      color: inherit;
      align-items: inherit;
      place-content: inherit;
      gap: inherit;
      background-color: inherit;
      cursor: inherit;
      border-bottom-right-radius: inherit;
      border-bottom-left-radius: inherit;
      border-top: inherit;
      border-bottom: inherit;
    }

    td {
      div {
        padding-right: 0px !important;
      }
    }

    tbody {
      width: inherit;
      tr {
        border-bottom: inherit !important;
        box-shadow: inherit !important;
      }
      tr:last-child {
        margin-bottom: inherit;
      }
    }
  }

  @media only screen and (max-width: 767px), (min-device-width: 769px) and (max-device-width: 1023px) {
    table {
      display: table;
      width: inherit;
      overflow-x: inherit;
      table-layout: auto;
    }
    table thead {
      display: table-header-group;
    }

    table tr {
      display: table-row;
      border: 1px solid #eeeeee;
      border-radius: 12px;
      border-bottom-width: 0px;
      margin-bottom: 15px;
      padding: 0 0 0 0 !important;
    }
    table td {
      display: table-cell;
      justify-content: space-between;
      width: calc(100% - 24px) !important;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 100%;
      border-top: 1px solid #eeeeee;
      flex-direction: row;
      padding: 4px 12px 4px 12px !important;
    }

    table td::before {
      content: attr(title);
      color: black;
      width: 120px;
      min-width: 120px;
    }
    tr td:first-child {
      border-top: 0px;
    }

    tr td:last-child {
      display: table-cell;
    }

    tr td:nth-last-child(2) {
      display: table-cell;
      text-decoration: underline;
      color: black;
      align-items: center;
      place-content: end;
      gap: 5px;
      background-color: #f5f5f5;
      cursor: pointer;
      border-bottom-right-radius: 12px;
      border-bottom-left-radius: 12px;
      border-top: 1px solid #eeeeee;
      border-bottom: 1px solid #eeeeee;
    }
    td {
      div {
        padding-right: 0px !important;
      }
    }

    tbody {
      width: inherit;
      tr {
        border-bottom: inherit !important;
        box-shadow: inherit !important;
      }
      tr:last-child {
        margin-bottom: inherit;
      }
    }
  }

  /* ESTILOS PROPIOS POR ENCIMNA DE DE LA SOBREESCRITURA DE LIBRERIA */
  @media only screen and (max-width: 1023px), (min-device-width: 1023px) and (max-device-width: 1280px) {
    .noContent-row {
      td {
        padding: 15px 12px 15px 10px !important;
      }
    }
  }
  @media only screen and (max-width: 767px), (min-device-width: 769px) and (max-device-width: 1023px) {
    .noContent-row {
      td {
        padding: 15px 12px 15px 10px !important;
      }
    }
  }
}

.panelAcciones-main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0.5rem;
  height: 4.125rem;
  gap: 1rem;

  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.buttonPanel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0rem 1rem;
  background-color: #263238;
  border-radius: 5rem;
}

.buttonPanel-button {
  color: white;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 100%;
  user-select: none;

  &:hover {
    background-color: rgba(135, 135, 255, 0.44);
  }
}

.pulse {
  animation: pulse 0.4s ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.entrada-general {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  width: 100%;
  gap: 1rem;
}

.colSpan2 {
  grid-column: span 2;
}

.otraInformacion-main {
  gap: 0.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

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

.producto-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.cantidad-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.cantidad-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.fields-border {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 0.5rem;
}

.button-delete {
  cursor: pointer;
  color: #616161;
  font-size: 1rem;
  margin-top: -0.5rem;
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;

  &:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
  }
}

.input-file-main {
  margin: 0;
  padding: 0;
  position: relative;
  flex-direction: column;
  vertical-align: top;
  min-width: 0;

  width: 100%;
  grid-column: inherit;
}

/* .input-file {
  opacity: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
} */

.input-file {
  opacity: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: calc(100% - 40px);
  height: 100%;
  cursor: pointer;
}

.documentos-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.documentos-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.destinoFinal-main {
  gap: 0.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.entradaTab-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  height: calc(100% - 3.2rem);
  gap: 0.5rem;
  overflow-y: auto;
}

.entradaTab-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
}

.entradaTab-content-column {
  width: calc(50% - 0.5rem);
}

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

.partidasTab-partida-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.fields-border {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 0.5rem;
}

.partidasTab-sandach-main {
  gap: 0.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.input-file-main {
  margin: 0;
  padding: 0;
  position: relative;
  flex-direction: column;
  vertical-align: top;
  min-width: 0;

  width: 100%;
  grid-column: inherit;
}

/* .input-file {
  opacity: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
} */

.input-file {
  opacity: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: calc(100% - 40px);
  height: 100%;
  cursor: pointer;
}

.partidasTab-residuo-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.partidasTab-residuo-switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  div {
    margin: 0 !important;
  }
}

.partidasTab-residuo-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.resumen {
  position: sticky;
  top: 0;
  z-index: 99;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 0.5rem 0.5rem white;
}

.sostenibilidad-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.confirmar-main {
  gap: 0.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.partidasTab-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 3.2rem);
  gap: 0.5rem;
  overflow-y: auto;
}

.partidasTab-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
}

.partidasTab-content-column {
  width: calc(50% - 0.5rem);
}

.entrada-main {
  display: flex;
  flex-direction: column;
  height: calc(100% - 69px);
  max-height: 100%;
  min-height: 100%;
  z-index: 0;

  border-radius: 0.5rem;

  background-color: white;
  overflow-y: hidden;
}

.entrada-container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  overflow: hidden;

  height: calc(100% - 2rem);
}

.containerZ {
  display: flex;
  flex-direction: column;
  padding: 2px 1.5vw 24px 1.5vw;
  height: calc(100% - 69px);

  .containerButtonH2 {
    display: flex;
    justify-content: space-between;
    #noTop {
      margin-top: 0px;
    }
  }

  h2 {
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 0rem;
  }

  h3 {
    color: #1a237e;
    font-weight: 500;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  h4 {
    color: #1a237e;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    align-self: center;
  }

  h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 1.25rem;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.0075em;
  }

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

  .form {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    height: 100%;
    overflow-x: auto;
    .formLavazasFlex {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
      .formLavazasGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        grid-auto-rows: max-content;
        gap: 12px;
        &.autofit-template {
          grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        }
      }
      .borderContainer {
        border: 1px solid #eeeeee;
        padding: 12px;
        border-radius: 8px;
      }
    }
    .formAnexo1 {
      display: flex;
      flex-direction: column;
      .containerAnexo1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        grid-auto-rows: max-content;
        gap: 12px;
      }
    }
    .formAnexo2 {
      display: flex;
      flex-direction: column;
      .containerAnexo2 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: max-content;
        gap: 12px;
      }
    }
    .formLavazas,
    .formAnexo1,
    .formAnexo2 {
      margin-bottom: 36px;
    }
    .formClientes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
      grid-auto-rows: max-content;
      gap: 12px;
    }
  }

  .form2 {
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    overflow-x: auto;
    padding-bottom: 0px;
    &.form2MarginBottom {
      margin-bottom: 12px;
    }
    scroll-snap-type: y proximity;
    .form2ToReverse {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }

  .containerTextArea {
    display: flex;
    flex-direction: column;
    .quill {
      border: 1px solid #eeeeee;
      border-radius: 8px;
      background-color: #f9f9fb;
      .ql-toolbar {
        display: flex;
        justify-content: space-between;

        &::after {
          display: none;
        }
      }

      .ql-container {
        overflow-y: auto;
        min-height: 100px;
        max-height: 100px;
        .ql-editor.ql-blank::before {
          font-style: normal;
        }
        .ql-editor {
          padding: 12px 58px 12px 15px;
        }
      }

      .ql-container,
      .ql-toolbar {
        border: 0px;
      }
    }
    .editTextAreaButtons {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      gap: 12px;
      padding: 0 12px 0 12px;
      .editTextArea1,
      .editTextArea2,
      .editTextArea3 {
        display: flex;
        flex-direction: row;
        gap: 12px;
      }
    }
  }

  .containerFormClientes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    .formClientes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
      grid-auto-rows: max-content;
      gap: 12px;
    }
  }

  .anexoPadding {
    padding-top: 2.25rem;
  }

  .buttonsContainer {
    padding-top: 24px;
    flex-direction: row;
    max-height: 45px;
    min-height: 45px;
    gap: 12px;
    .buttons {
      display: flex;
      flex-direction: row;
      gap: 12px;
      height: 100%;
      button {
        margin-top: 0px;
      }
    }
  }

  .alignSelfButtons {
  }

  .transferList {
    min-width: 400px;
    max-height: 400px;
  }

  .checboxInLine {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    gap: 50px;
  }

  .direccion {
    margin-top: 12px;
    margin-bottom: 12px;
    gap: 12px;
  }

  .checbox {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-bottom: 5px;

    .MuiFormControlLabel-root.Mui-disabled {
      gap: 10px;
    }
    .MuiFormControlLabel-root.Mui-disabled {
      gap: 10px;
    }
  }

  .checboxError {
    padding: 5px;
  }

  .checboxError-error {
    padding: 5px;
    color: #f44336;
    font-size: 0.75rem;
  }
}

.paddingTop {
  padding-top: 12px;
}

.paddingBottom {
  padding-bottom: 12px;
}

@media only screen and (max-width: 400px) {
  .containerZ {
    .transferList {
      min-width: 270px;
    }
  }
}

.headerArea {
  font-size: 20px;
  font-weight: 500;
  color: #212121;
}

.subheaderArea {
  font-size: 16px;
  font-weight: 700;
  color: #616161;
}

.formGrid {
  display: grid;
  gap: 12px;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%/1, max(18em, 100%/6)), 1fr));
  grid-auto-rows: max-content;
}

.formFlex {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px;

  &.noPadding {
    padding: 0;
  }

  .formFlex:last-child {
    margin-bottom: 0px;
  }
}

.borderArea,
.borderArea_Grey {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 12px;
}

.borderArea {
  background-color: white;
  &.blue {
    background: #e2edfc;
  }

  &.red {
    background: #f7ccc8;
  }
}

.borderArea_Grey {
  background-color: #f9f9fb;
}

.checboxInLine {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-evenly;
}

.buttonAddArea {
  display: 'flex';
  align-items: 'self-end';
  justify-content: 'start';
}

.formDetalle {
  display: flex;
  flex-direction: column;
  border: solid 1px #eeeeee;
  background-color: #f9f9fb;
  gap: 12px;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
  .formDetalleGrid {
    display: grid;
    gap: 1rem;
    grid-auto-columns: auto;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));

    &.large {
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    }
  }

  .formDetalleFlex {
    margin-top: 16px;
  }

  .removeGap {
    margin-top: 0px;
  }

  .formGridFlex {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    p {
      font-size: 16px;
      font-weight: 400;
      margin: 0 0 12px 0;
    }
    .formGridFlexContainerList {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;

      .formGridFlexContainerListItem {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: 12px;
        width: 100%;
        .formGridFlexContainerListItemButtonRed {
          display: none;
        }
        .formGridFlexContainerListItemButtonIcon {
          margin-top: 20px;
        }
        @media (max-width: 1100px) {
          .formGridFlexContainerListItemButtonRed {
            display: flex;
            width: 100%;
          }
          .formGridFlexContainerListItemButtonIcon {
            display: none;
          }
        }
      }

      .formGridFlexContainerListButton {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: 12px;
        width: 100%;
        button {
          margin-top: 0px;
        }
      }
    }

    &.gray {
      border: 1px solid rgba(158, 158, 158, 0.25);
      p {
        color: rgba(0, 0, 0, 0.5);
      }
    }
  }
}

.listClass {
  display: flex;
  flex-direction: column;
  .AccordionComponentList:nth-last-child(1) {
    border-bottom: 1px solid #a7afe185;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    .MuiAccordionList {
      border-top-right-radius: 0px !important;
      border-top-left-radius: 0px !important;
      border-bottom-right-radius: 4px !important;
      border-bottom-left-radius: 4px !important;
      .MuiAccordionSummary-root {
        border-bottom: 0px;
        &.Mui-expanded {
          border-bottom: 1px solid #a7afe185;
        }
      }
    }
  }

  .AccordionComponentList:first-child {
    border-top: 1px solid #a7afe185;
    border-top-right-radius: 4px !important;
    border-top-left-radius: 4px !important;
    .MuiAccordionList {
      border-top-right-radius: 4px !important;
      border-top-left-radius: 4px !important;
      border-bottom-right-radius: 0px !important;
      border-bottom-left-radius: 0px !important;
    }
  }
}

.listClass2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  .AccordionComponentList:nth-last-child(1) {
    border-bottom: 1px solid #a7afe185;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    .MuiAccordionList {
      border-top-right-radius: 0px !important;
      border-top-left-radius: 0px !important;
      border-bottom-right-radius: 4px !important;
      border-bottom-left-radius: 4px !important;
      .MuiAccordionSummary-root {
        border-bottom: 0px;
        &.Mui-expanded {
          border-bottom: 1px solid #a7afe185;
        }
      }
    }
  }

  .AccordionComponentList:first-child {
    border-top: 1px solid #a7afe185;
    border-top-right-radius: 4px !important;
    border-top-left-radius: 4px !important;
    .MuiAccordionList {
      border-top-right-radius: 4px !important;
      border-top-left-radius: 4px !important;
      border-bottom-right-radius: 0px !important;
      border-bottom-left-radius: 0px !important;
    }
  }
  .AccordionComponentList:nth-last-child(1) .MuiAccordionList .MuiAccordionSummary-root {
    border-bottom: 0px solid #a7afe185 !important;
  }
  .AccordionComponentList .MuiAccordionList .MuiAccordionSummary-root {
    border-bottom: 1px solid #a7afe185 !important;
  }
}

.container1 {
  display: flex;
  flex-direction: column;
  height: calc(100% - 69px);
  max-height: 100%;
  min-height: 100%;
  z-index: 0;

  .containerX {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    margin-bottom: 12px;

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

    .baseGrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%/1, max(16em, 100%/6)), 1fr));
      grid-auto-rows: max-content;
      gap: 24px;

      &.large {
        grid-template-columns: repeat(auto-fill, minmax(min(100%/1, max(24em, 100%/5)), 1fr));
      }

      .fit {
        grid-template-columns: repeat(auto-fit, minmax(min(100%/1, max(16em, 100%/6)), 1fr));
      }

      .large-fit {
        grid-template-columns: repeat(auto-fit, minmax(min(100%/1, max(24em, 100%/5)), 1fr));
      }
    }

    .gridInfo {
      display: grid;
      gap: 12px;
      grid-auto-flow: row;
      grid-auto-columns: auto;
      grid-template-columns: 100px 200px 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gridInfo {
      border-bottom: 1px solid rgb(92, 107, 192);
      border-left: 1px solid rgb(92, 107, 192);
      border-right: 1px solid rgb(92, 107, 192);
    }

    .gridInfo:first-child {
      border-top: 1px solid rgb(92, 107, 192);
      border-radius: 8px 8px 0px 0px;
    }

    .fixed-column {
      grid-column: 1;
      align-self: center;
      justify-self: center;
    }

    .textField-title {
      font-size: 16px;
      font-weight: 450;
      padding: 6px;
    }

    .textfieldDisabled-contained {
      padding: 6px 12px;
      border-radius: 8px;
    }

    .paddingTop {
      padding-top: 12px;
    }

    .paddingBottom {
      padding-bottom: 12px;
    }

    .baseGridArchivos {
      display: grid;
      grid-auto-flow: row dense;
      grid-auto-columns: 1fr;
      grid-template-columns: 1fr 200px;
      gap: 24px;
    }

    h3 {
      color: #1a237e;
      font-weight: 500;
      font-size: 20px;
      margin-top: 12px;
      margin-bottom: 12px;
    }
  }
}

.transportes {
  display: flex;
  flex-direction: column;
  width: calc(100% - 5px);
  height: calc(100dvh - 380px);
  border: 1px solid #eeeeee;
  overflow-y: auto;
}

.accordion_group_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 100%;
}

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

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

.accordion_group_rightComponent {
  width: 100%;
}

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

.header_data {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 4px;
}

/* .data--par {
  background-color: rgb(238, 238, 238, 0.5);
} */

.data_row {
  display: flex;
  align-self: center;
  justify-content: center;
}

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

.--right {
  display: flex;
  justify-content: right;
  padding-right: 2rem;
}

.data_row_title {
  font-weight: 400;
  font-size: 16px;
  color: #1a237e;
}

.data_row_description {
  font-weight: 300;
  font-size: 12px;
  color: #1a237e;
}

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

/* @media (max-width: 768px) {
  .data_row,
  .--left {
    justify-content: center;
  }
} */

.header {
  background-color: #f5f5f5;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 50px;
  display: flex;
  width: calc(100% -5px);
  flex-direction: row;
  gap: 4px;
  border-bottom: 2px solid #949494;
}

.noData {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 56px;

  font-size: 1rem;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.gridTable {
  display: grid;
  width: 100%;
  background-color: white;
  padding: 12px;
  border: 1px solid #979fab40;
  border-radius: 8px;
  gap: 6px;

  @media (max-width: 1023px) {
    display: none;
  }
}

.gridTableDisabled .gridTable-thead .gridTable-thead-tr {
  background-color: #f5f5f5;
}

.gridTableDisabled .gridTable-tbody {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.gridTableDisabled .gridTable-tbody .gridTable-tbody-td {
  background-color: #f5f5f5;
  border: none;
}

.gridTable-tbody {
  width: 100%;
  overflow-y: auto;
  overflow-x: auto;

  tr {
    border-bottom: none;
    padding: 0px;
    gap: 12px;

    &:last-child {
      border-bottom: none;
    }

    &:hover {
      background-color: white;
    }
  }

  .gridTable-tbody-td {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-flow: row;
    font-size: 1rem;
    color: rgb(97, 97, 97);
    padding: 0;
    border: none !important;
    margin: 0 !important;
  }

  .gridTable-tbody-remove {
    display: flex;
    justify-content: end;
    padding: 0 12px;
    align-self: center;
  }

  .gridTable-thead-th {
    display: flex;
    justify-content: center;
    align-self: auto;
    text-decoration: none !important;
    background-color: inherit !important;
    border: none !important;

    @media (max-width: 1024px) and (max-width: 1023px), (min-device-width: 1023px) and (max-device-width: 1280px) {
      width: 100% !important;

      div {
        &.MuiFormControl-root {
          .MuiNumberFormat {
            input {
              padding-right: 14px !important;
            }
          }
        }
      }
    }

    &.date {
      min-width: 200px;
    }

    &.button {
      align-items: center;
      border: none !important;
    }
  }

  td.gridTable-thead-th {
    padding: 0 !important;

    &::before {
      display: none !important;
    }
  }
}

.gridTable-element {
  display: block;
  align-self: center;
  white-space: normal;

  &.center {
    text-align: center;
  }

  &.left {
    text-align: left;
  }

  &.right {
    text-align: right;
  }
}

.gridTable-thead {
  display: grid !important;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1;

  tr {
    border-bottom: none;
    padding: 0;
    gap: 12px;

    &:hover {
      background-color: #f5f5f5;
    }
  }

  .gridTable-thead-tr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    background-color: #f5f5f5;
    padding: 12px 0px !important;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .gridTable-thead-th {
    background-color: #f5f5f5;
    display: flex;

    &.date {
      min-width: 200px;
    }

    &.button {
      align-items: center;
    }
  }

  th.gridTable-thead-th {
    padding: 0;
    font-weight: 500;
    font-size: 14px;
  }
}

.gridTable-element {
  display: block;
  align-self: center;
  white-space: normal;

  &.center {
    text-align: center;
  }

  &.left {
    text-align: left;
  }

  &.right {
    text-align: right;
  }
}

.table-card {
  display: none;

  @media (max-width: 1023px) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
  }

  .card {
    display: flex;
    flex-direction: column;
    background-color: #fcfbfb;
    gap: 4px;
    padding: 8px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
  }

  .card-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    max-width: 100%;
    border-top: 1px solid #eeeeee;
    padding-top: 4px;

    &:first-child {
      border-top: none;
    }

    &.editable {
      border-top: 1px solid #fcfbfb;
    }
  }

  .card-l {
    display: flex;
    flex: 1;
    padding: 5px 0;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .card-r-AutocompleteKeyValue {
    margin-top: 5px;
    min-width: 100px;
    max-width: 200px;
    width: 100%;
  }

  .card-r {
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    min-width: 100px;
    max-width: 200px;
    color: #1a237e;

    &.center {
      text-align: center;
    }

    &.left {
      text-align: left;
    }

    &.right {
      text-align: right;
    }
  }

  .card-remove {
    display: flex;
    flex: 1;
    text-align: end;
    justify-content: flex-end;
    align-items: center;
  }
}

.tablaComunidadesAutonomas {
  & .contentTable {
    height: 95%;
    margin: 0;

    & .divTable {
      margin: 0;
      height: 100% !important;
    }

    & .contentTableScroll {
      height: 100%;

      & .divTable {
          margin: 0;
          height: calc(100vh - 480px) !important;
        }
    }
  }
}
.input-group {
    margin-bottom: 15px;
}

.button-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.button {
    margin: 10px;
}
.chip-container {
  gap: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

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

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

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

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

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

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

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

.recetas-table-content {
  .contentTable {
    margin: 0px !important;
  }

  &.error {
    border-radius: 8px;
    border: 1px solid red;
  }
}

.SideBar {
  background-color: #303f9f;
  color: white;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 68px;
  user-select: none;
  transition: width 0.3s ease-in-out;

  &.expanded {
    z-index: 4 !important;
    width: 250px;
  }
  &.collapsed {
    z-index: 3 !important;
    width: 68px;
    overflow: hidden;
  }

  &.production {
    background-color: #263238;
  }

  transition: width 0.3s ease-in-out;

  .Sidebar__overflow {
    overflow-x: hidden;
    overflow-y: auto;

    &.collapsed {
      overflow-y: hidden;
    }
  }

  .selectorContainer {
    display: flex;
    flex-direction: row;
    padding: 6px 10px 10px 10px;
    max-height: 50px;
    cursor: pointer;
    .menuButton {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-right: 10px;

      .hamburguerIcon {
        cursor: pointer;
        border: none;
        background-color: transparent;
        color: white;
        padding: 12px;

        &:hover {
          background-color: rgba(211, 217, 229, 0.25);
          color: white;
          border-radius: 8px;
        }
      }
    }
    .menuApp {
      &.collapsed {
        width: 0px;
        overflow: hidden;
      }

      &.expanded {
        width: 173px;
      }

      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 13px 12px 13px 12px;
      gap: 12px;
      white-space: nowrap;
      transition: width 0.3s ease-in-out;

      .nameApp {
        color: #eeeeee;
        font-size: 16px;
        font-weight: 500;
        align-self: center;
        justify-content: start;
        width: 125px;
        white-space: normal;
        transition: width 0.3s ease-in-out;
        overflow: hidden;
        white-space: nowrap;
      }
      .arrows {
        justify-content: end;
      }
      &:hover {
        background-color: rgba(211, 217, 229, 0.25);
        color: white;
        border-radius: 8px;
      }
    }
  }
}
@media screen and (width: 600px) {
  .collapsed {
    max-height: 64px !important;
  }
}
@media (max-width: 600px) {
  .SideBar {
    &.expanded {
      //background-color: #263238;

      .selectorContainer {
        padding: 0px 10px !important;
        box-shadow: 0px 1px 0px rgba(151, 159, 171, 0.25);
        max-height: 48px;
      }
    }
    &.collapsed {
      max-width: 52px !important;
      min-width: 52px !important;
      max-height: 56px;
      background-color: #fff;
      box-shadow: 0px 1px 0px #e0e0e0;
      .selectorContainer {
        padding: 4px 0px 0px 6px /* !important */;
      }
    }
    .selectorContainer {
      .menuButton {
        .hamburguerIcon:hover {
          background-color: transparent;
        }
      }
    }
  }

  .menuApp {
    display: flex;
    flex-direction: row;
    width: 75%;
    justify-content: space-between;
    padding: 12px;
    white-space: nowrap;

    &:hover {
      background-color: #fff;
      color: white;
    }
  }
}

@media (min-width: 0px) and (max-width: 600px) and (orientation: landscape) {
  .SideBar {
    &.collapsed {
      max-height: 48px;
      min-height: 48px;
    }
    .selectorContainer {
      .menuButton {
        .hamburguerIcon:hover {
          background-color: transparent;
        }
      }
    }
  }
}

.container {
  margin-top: 64px;
  margin-left: 68px;
  padding: 17px 17px 12px 17px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 33px);
  overflow-x: hidden;
  transition: margin-left 0.3s;

  &.sidebar-open {
    display: flex;
    margin-left: 250px;
    transition: margin-left 0.3s;
  }
  .containerInicio {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    min-height: calc(100vh - 114px);
    overflow: hidden;
    .footer {
      font-size: 0.813rem;
      text-align: end;
      color: #78909c;
    }
  }
}

.full_container {
  height: calc(100vh - 64px);
}

#textButton {
  width: 50px;
  padding: 0px;
  color: grey;
  font-size: 13px;
  &.MuiButtonBase-root {
    padding: 0px;
    max-height: 18px;
    &:hover {
      background-color: transparent;
    }
  }
}

@media (max-width: 600px) {
  .container {
    margin-top: 56px;
    margin-left: 0px;

    &.sidebar-open {
      display: flex;
      margin-left: 0;
    }
  }

  .full_container {
    height: calc(100vh - 56px) !important;
  }
}

h2 {
  color: #212121;
  font-size: 1.75rem;
}

.rdrCalendarWrapper {
  box-sizing: border-box;
  background: #ffffff;
  display: inline-flex;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rdrDateDisplay{
  display: flex;
  justify-content: space-between;
}

.rdrDateDisplayItem{
  flex: 1 1;
  width: 0;
  text-align: center;
  color: inherit;
}

.rdrDateDisplayItem + .rdrDateDisplayItem{
    margin-left: 0.833em;
  }

.rdrDateDisplayItem input{
    text-align: inherit
  }

.rdrDateDisplayItem input:disabled{
      cursor: default;
    }

.rdrDateDisplayItemActive{}

.rdrMonthAndYearWrapper {
  box-sizing: inherit;
  display: flex;
  justify-content: space-between;
}

.rdrMonthAndYearPickers{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdrMonthPicker{}

.rdrYearPicker{}

.rdrNextPrevButton {
  box-sizing: inherit;
  cursor: pointer;
  outline: none;
}

.rdrPprevButton {}

.rdrNextButton {}

.rdrMonths{
  display: flex;
}

.rdrMonthsVertical{
  flex-direction: column;
}

.rdrMonthsHorizontal > div > div > div{
  display: flex;
  flex-direction: row;
}

.rdrMonth{
  width: 27.667em;
}

.rdrWeekDays{
  display: flex;
}

.rdrWeekDay {
  flex-basis: calc(100% / 7);
  box-sizing: inherit;
  text-align: center;
}

.rdrDays{
  display: flex;
  flex-wrap: wrap;
}

.rdrDateDisplayWrapper{}

.rdrMonthName{}

.rdrInfiniteMonths{
  overflow: auto;
}

.rdrDateRangeWrapper{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rdrDateInput {
  position: relative;
}

.rdrDateInput input {
    outline: none;
  }

.rdrDateInput .rdrWarning {
    position: absolute;
    font-size: 1.6em;
    line-height: 1.6em;
    top: 0;
    right: .25em;
    color: #FF0000;
  }

.rdrDay {
  box-sizing: inherit;
  width: calc(100% / 7);
  position: relative;
  font: inherit;
  cursor: pointer;
}

.rdrDayNumber {
  display: block;
  position: relative;
}

.rdrDayNumber span{
    color: #1d2429;
  }

.rdrDayDisabled {
  cursor: not-allowed;
}

@supports (-ms-ime-align: auto) {
  .rdrDay {
    flex-basis: 14.285% !important;
  }
}

.rdrSelected, .rdrInRange, .rdrStartEdge, .rdrEndEdge{
  pointer-events: none;
}

.rdrInRange{}

.rdrDayStartPreview, .rdrDayInPreview, .rdrDayEndPreview{
  pointer-events: none;
}

.rdrDayHovered{}

.rdrDayActive{}

.rdrDateRangePickerWrapper{
  display: inline-flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rdrDefinedRangesWrapper{}

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

.rdrStaticRange{
  font-size: inherit;
}

.rdrStaticRangeLabel{}

.rdrInputRanges{}

.rdrInputRange{
  display: flex;
}

.rdrInputRangeInput{}

.rdrCalendarWrapper{
  color: #000000;
  font-size: 12px;
}

.rdrDateDisplayWrapper{
  background-color: rgb(239, 242, 247);
}

.rdrDateDisplay{
  margin: 0.833em;
}

.rdrDateDisplayItem{
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 1px 2px 0 rgba(35, 57, 66, 0.21);
  border: 1px solid transparent;
}

.rdrDateDisplayItem input{
    cursor: pointer;
    height: 2.5em;
    line-height: 2.5em;
    border: 0px;
    background: transparent;
    width: 100%;
    color: #849095;
  }

.rdrDateDisplayItemActive{
  border-color: currentColor;
}

.rdrDateDisplayItemActive input{
    color: #7d888d
  }

.rdrMonthAndYearWrapper {
  align-items: center;
  height: 60px;
  padding-top: 10px;
}

.rdrMonthAndYearPickers{
  font-weight: 600;
}

.rdrMonthAndYearPickers select{
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 10px 30px 10px 10px;
    border-radius: 4px;
    outline: 0;
    color: #3e484f;
    background: url("data:image/svg+xml;utf8,<svg width='9px' height='6px' viewBox='0 0 9 6' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><g id='Artboard' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' transform='translate(-636.000000, -171.000000)' fill-opacity='0.368716033'><g id='input' transform='translate(172.000000, 37.000000)' fill='%230E242F' fill-rule='nonzero'><g id='Group-9' transform='translate(323.000000, 127.000000)'><path d='M142.280245,7.23952813 C141.987305,6.92353472 141.512432,6.92361662 141.219585,7.23971106 C140.926739,7.5558055 140.926815,8.06821394 141.219755,8.38420735 L145.498801,13 L149.780245,8.38162071 C150.073185,8.0656273 150.073261,7.55321886 149.780415,7.23712442 C149.487568,6.92102998 149.012695,6.92094808 148.719755,7.23694149 L145.498801,10.7113732 L142.280245,7.23952813 Z' id='arrow'></path></g></g></g></svg>") no-repeat;
    background-position: right 8px center;
    cursor: pointer;
    text-align: center
  }

.rdrMonthAndYearPickers select:hover{
      background-color: rgba(0,0,0,0.07);
    }

.rdrMonthPicker, .rdrYearPicker{
  margin: 0 5px
}

.rdrNextPrevButton {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0.833em;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #EFF2F7
}

.rdrNextPrevButton:hover{
    background: #E1E7F0;
  }

.rdrNextPrevButton i {
    display: block;
    width: 0;
    height: 0;
    padding: 0;
    text-align: center;
    border-style: solid;
    margin: auto;
    transform: translate(-3px, 0px);
  }

.rdrPprevButton i {
    border-width: 4px 6px 4px 4px;
    border-color: transparent rgb(52, 73, 94) transparent transparent;
    transform: translate(-3px, 0px);
  }

.rdrNextButton i {
    margin: 0 0 0 7px;
    border-width: 4px 4px 4px 6px;
    border-color: transparent transparent transparent rgb(52, 73, 94);
    transform: translate(3px, 0px);
  }

.rdrWeekDays {
  padding: 0 0.833em;
}

.rdrMonth{
  padding: 0 0.833em 1.666em 0.833em;
}

.rdrMonth .rdrWeekDays {
    padding: 0;
  }

.rdrMonths.rdrMonthsVertical .rdrMonth:first-child .rdrMonthName{
  display: none;
}

.rdrWeekDay {
  font-weight: 400;
  line-height: 2.667em;
  color: rgb(132, 144, 149);
}

.rdrDay {
  background: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  padding: 0;
  line-height: 3.000em;
  height: 3.000em;
  text-align: center;
  color: #1d2429
}

.rdrDay:focus {
    outline: 0;
  }

.rdrDayNumber {
  outline: 0;
  font-weight: 300;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  top: 5px;
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdrDayToday .rdrDayNumber span{
  font-weight: 500
}

.rdrDayToday .rdrDayNumber span:after{
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #3d91ff;
  }

.rdrDayToday:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span:after,.rdrDayToday:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span:after{
      background: #fff;
    }

.rdrDay:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span,.rdrDay:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span{
          color: rgba(255, 255, 255, 0.85);
        }

.rdrSelected, .rdrInRange, .rdrStartEdge, .rdrEndEdge{
  background: currentColor;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
}

.rdrSelected{
  left: 2px;
  right: 2px;
}

.rdrInRange{}

.rdrStartEdge{
  border-top-left-radius: 1.042em;
  border-bottom-left-radius: 1.042em;
  left: 2px;
}

.rdrEndEdge{
  border-top-right-radius: 1.042em;
  border-bottom-right-radius: 1.042em;
  right: 2px;
}

.rdrSelected{
  border-radius: 1.042em;
}

.rdrDayStartOfMonth .rdrInRange, .rdrDayStartOfMonth .rdrEndEdge, .rdrDayStartOfWeek .rdrInRange, .rdrDayStartOfWeek .rdrEndEdge{
    border-top-left-radius: 1.042em;
    border-bottom-left-radius: 1.042em;
    left: 2px;
  }

.rdrDayEndOfMonth .rdrInRange,  .rdrDayEndOfMonth .rdrStartEdge,  .rdrDayEndOfWeek .rdrInRange,  .rdrDayEndOfWeek .rdrStartEdge{
    border-top-right-radius: 1.042em;
    border-bottom-right-radius: 1.042em;
    right: 2px;
  }

.rdrDayStartOfMonth .rdrDayInPreview, .rdrDayStartOfMonth .rdrDayEndPreview, .rdrDayStartOfWeek .rdrDayInPreview, .rdrDayStartOfWeek .rdrDayEndPreview{
    border-top-left-radius: 1.333em;
    border-bottom-left-radius: 1.333em;
    border-left-width: 1px;
    left: 0px;
  }

.rdrDayEndOfMonth .rdrDayInPreview, .rdrDayEndOfMonth .rdrDayStartPreview, .rdrDayEndOfWeek .rdrDayInPreview, .rdrDayEndOfWeek .rdrDayStartPreview{
   border-top-right-radius: 1.333em;
   border-bottom-right-radius: 1.333em;
   border-right-width: 1px;
   right: 0px;
 }

.rdrDayStartPreview, .rdrDayInPreview, .rdrDayEndPreview{
  background: rgba(255, 255, 255, 0.09);
  position: absolute;
  top: 3px;
  left: 0px;
  right: 0px;
  bottom: 3px;
  pointer-events: none;
  border: 0px solid currentColor;
  z-index: 1;
}

.rdrDayStartPreview{
  border-top-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-left-radius: 1.333em;
  border-bottom-left-radius: 1.333em;
  left: 0px;
}

.rdrDayInPreview{
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.rdrDayEndPreview{
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-top-right-radius: 1.333em;
  border-bottom-right-radius: 1.333em;
  right: 2px;
  right: 0px;
}

.rdrDefinedRangesWrapper{
  font-size: 12px;
  width: 226px;
  border-right: solid 1px #eff2f7;
  background: #fff;
}

.rdrDefinedRangesWrapper .rdrStaticRangeSelected{
    color: currentColor;
    font-weight: 600;
  }

.rdrStaticRange{
  border: 0;
  cursor: pointer;
  display: block;
  outline: 0;
  border-bottom: 1px solid #eff2f7;
  padding: 0;
  background: #fff
}

.rdrStaticRange:hover .rdrStaticRangeLabel,.rdrStaticRange:focus .rdrStaticRangeLabel{
      background: #eff2f7;
    }

.rdrStaticRangeLabel{
  display: block;
  outline: 0;
  line-height: 18px;
  padding: 10px 20px;
  text-align: left;
}

.rdrInputRanges{
  padding: 10px 0;
}

.rdrInputRange{
  align-items: center;
  padding: 5px 20px;
}

.rdrInputRangeInput{
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  border: solid 1px rgb(222, 231, 235);
  margin-right: 10px;
  color: rgb(108, 118, 122)
}

.rdrInputRangeInput:focus, .rdrInputRangeInput:hover{
    border-color: rgb(180, 191, 196);
    outline: 0;
    color: #333;
  }

.rdrCalendarWrapper:not(.rdrDateRangeWrapper) .rdrDayHovered .rdrDayNumber:after{
  content: '';
  border: 1px solid currentColor;
  border-radius: 1.333em;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0px;
  right: 0px;
  background: transparent;
}

.rdrDayPassive{
  pointer-events: none;
}

.rdrDayPassive .rdrDayNumber span{
    color: #d5dce0;
  }

.rdrDayPassive .rdrInRange, .rdrDayPassive .rdrStartEdge, .rdrDayPassive .rdrEndEdge, .rdrDayPassive .rdrSelected, .rdrDayPassive .rdrDayStartPreview, .rdrDayPassive .rdrDayInPreview, .rdrDayPassive .rdrDayEndPreview{
    display: none;
  }

.rdrDayDisabled {
  background-color: rgb(248, 248, 248);
}

.rdrDayDisabled .rdrDayNumber span{
    color: #aeb9bf;
  }

.rdrDayDisabled .rdrInRange, .rdrDayDisabled .rdrStartEdge, .rdrDayDisabled .rdrEndEdge, .rdrDayDisabled .rdrSelected, .rdrDayDisabled .rdrDayStartPreview, .rdrDayDisabled .rdrDayInPreview, .rdrDayDisabled .rdrDayEndPreview{
    filter: grayscale(100%) opacity(60%);
  }

.rdrMonthName{
  text-align: left;
  font-weight: 600;
  color: #849095;
  padding: 0.833em;
}

body {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
}

h2 {
  font-weight: 700;
}

* {
  font-family: 'Roboto';
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar {
  background: transparent;
  width: 0.25rem;
  border-radius: 0.125rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.4rem;
  background-color: gray;
}

::-webkit-scrollbar-track:horizontal {
  background: transparent;
}

::-webkit-scrollbar:horizontal {
  background: transparent;
  height: 0.25rem;
  border-radius: 0.125rem;
}

::-webkit-scrollbar-thumb:horizontal {
  border-radius: 0.4rem;
  background-color: gray;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

input[type='number'] {
  -moz-appearance: textfield;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  html.touch *:hover {
    all: unset !important;
  }
}

table td::before {
  max-width: 40%;
  width: auto;
  display: block;
  overflow: hidden;
  min-width: 30%;
  text-overflow: ellipsis;
  flex-grow: 1
}

.bg-white{
  background-color: #fff;
}
.border-b{
  border-bottom: 1px solid;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-5 {
  gap: 5rem;
}
.h-full {
  height: 100%;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between
}
.max-w-full{
  max-width: 100%;
}
.max-w-\[200px\]{
  max-width: 200px;
}
.overflow-x-auto {
  overflow-x: auto;
}
.p-3 {
  padding: 0.75rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.whitespace-normal {
  white-space: normal;
}

.\!bg-white{
  background-color: #fff !important;
}
.\!border-b{
  border-bottom: 1px solid !important;
}
.\!flex {
  display: flex !important;
}
.\!flex-col {
  flex-direction: column !important;
}
.\!flex-row {
  flex-direction: row !important;
}
.\!gap-0 {
  gap: 0 !important;
}
.\!gap-1 {
  gap: 0.25rem !important;
}
.\!gap-5 {
  gap: 5rem !important;
}
.\!h-full {
  height: 100% !important;
}
.\!items-center {
  align-items: center !important;
}
.\!justify-between {
  justify-content: space-between !important;
}
.\!max-w-full{
  max-width: 100% !important;
}
.\!max-w-\[200px\]{
  max-width: 200px !important;
}
.\!overflow-x-auto {
  overflow-x: auto !important;
}
.\!p-3 {
  padding: 0.75rem !important;
}
.\!pt-3{
  padding-top: 0.75rem !important;
}
.\!rounded-md {
  border-radius: 0.375rem !important;
}
.\!rounded-lg {
  border-radius: 0.5rem !important;
}
.\!whitespace-normal {
  white-space: normal !important;
}
@media (min-width: 768px) {
  .md\:bg-white{
    background-color: #fff;
  }
  .md\:border-b{
    border-bottom: 1px solid;
  }
  .md\:flex {
    display: flex;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:gap-0 {
    gap: 0;
  }
  .md\:gap-1 {
    gap: 0.25rem;
  }
  .md\:gap-5 {
    gap: 5rem;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-between {
    justify-content: space-between
  }
  .md\:max-w-full{
    max-width: 100%;
  }
  .md\:max-w-\[200px\]{
    max-width: 200px;
  }
  .md\:overflow-x-auto {
    overflow-x: auto;
  }
  .md\:p-3 {
    padding: 0.75rem;
  }
  .md\:pt-3{
    padding-top: 0.75rem;
  }
  .md\:rounded-md {
    border-radius: 0.375rem;
  }
  .md\:rounded-lg {
    border-radius: 0.5rem;
  }
  .md\:whitespace-normal {
    white-space: normal;
  }
  .md\:\!bg-white{
    background-color: #fff !important;
  }
  .md\:\!border-b{
    border-bottom: 1px solid !important;
  }
  .md\:\!flex {
    display: flex !important;
  }
  .md\:\!flex-col {
    flex-direction: column !important;
  }
  .md\:\!flex-row {
    flex-direction: row !important;
  }
  .md\:\!gap-0 {
    gap: 0 !important;
  }
  .md\:\!gap-1 {
    gap: 0.25rem !important;
  }
  .md\:\!gap-5 {
    gap: 5rem !important;
  }
  .md\:\!h-full {
    height: 100% !important;
  }
  .md\:\!items-center {
    align-items: center !important;
  }
  .md\:\!justify-between {
    justify-content: space-betwee !importantn
  }
  .md\:\!max-w-full{
    max-width: 100% !important;
  }
  .md\:\!max-w-\[200px\]{
    max-width: 200px !important;
  }
  .md\:\!overflow-x-auto {
    overflow-x: auto !important;
  }
  .md\:\!p-3 {
    padding: 0.75rem !important;
  }
  .md\:\!pt-3{
    padding-top: 0.75rem !important;
  }
  .md\:\!rounded-md {
    border-radius: 0.375rem !important;
  }
  .md\:\!rounded-lg {
    border-radius: 0.5rem !important;
  }
  .md\:\!whitespace-normal {
    white-space: normal !important;
  }
}

