/*
  AVANZA CONTROL V5.7.6
  Navegación exclusiva del módulo Caja.
*/

#cashSection {
  width: 100%;
  min-width: 0;
}

.cash-exclusive-header-v576 {
  display: none;
}

/* Ocultar encabezado y opciones al abrir una operación */

#cashSection.cash-exclusive-active-v576
> .page-heading,

#cashSection.cash-exclusive-active-v576
> .hub-grid {
  display: none !important;
}

/*
  Se conservan filtros, alertas y resumen porque
  proporcionan el contexto diario de la operación.
*/

#cashSection.cash-exclusive-active-v576
> .cash-exclusive-header-v576 {
  margin-bottom: 13px;
  padding: 16px 18px;

  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);

  align-items: center;
  gap: 15px;

  border: 1px solid #d7e3ed;
  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f2f7fb
    );

  box-shadow:
    0 8px 22px
    rgba(7, 31, 61, .06);
}

.cash-exclusive-back-v576 {
  min-height: 42px;
  padding: 9px 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border: 1px solid #c5d9e8;
  border-radius: 11px;

  background: #ffffff;
  color: #0756a3;

  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.cash-exclusive-back-v576 span {
  font-size: 21px;
  line-height: 1;
}

.cash-exclusive-back-v576:hover {
  border-color: #92bddd;
  background: #edf6fd;
}

.cash-exclusive-title-v576 {
  min-width: 0;
}

.cash-exclusive-title-v576 > span {
  display: block;
  margin-bottom: 4px;

  color: #075fb3;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .15em;
}

.cash-exclusive-title-v576 h2 {
  margin: 0;

  color: #071f3d;
  font-size: 22px;
  letter-spacing: -.02em;
}

.cash-exclusive-title-v576 p {
  margin: 5px 0 0;

  color: #74869a;
  font-size: 10px;
  line-height: 1.45;
}

/* Mostrar únicamente el panel seleccionado */

#cashSection.cash-exclusive-active-v576
> .cash-panel {
  display: none !important;
}

#cashSection.cash-exclusive-active-v576
> .cash-panel.cash-exclusive-panel-v576 {
  width: 100%;
  min-width: 0;
  margin-top: 13px;

  display: block !important;

  animation:
    cash-exclusive-in-v576
    .18s ease;
}

/* Filtros más compactos dentro de la operación */

#cashSection.cash-exclusive-active-v576
> .cash-toolbar {
  margin-bottom: 10px;
}

#cashSection.cash-exclusive-active-v576
> .cash-summary-grid {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Computadora */

@media (min-width: 1100px) {
  #cashSection.cash-exclusive-active-v576 {
    min-height:
      calc(100vh - 145px);
  }

  #cashSection.cash-exclusive-active-v576
  > .cash-panel.cash-exclusive-panel-v576 {
    min-height:
      calc(100vh - 390px);
  }
}

/* Teléfono */

@media (max-width: 620px) {
  #cashSection.cash-exclusive-active-v576
  > .cash-exclusive-header-v576 {
    position: sticky;
    top: 0;
    z-index: 12;

    margin: -4px -4px 10px;
    padding: 11px;

    grid-template-columns: 1fr;

    border-radius: 13px;

    background:
      rgba(255, 255, 255, .97);

    backdrop-filter: blur(14px);
  }

  .cash-exclusive-back-v576 {
    width: 100%;
  }

  .cash-exclusive-title-v576 h2 {
    font-size: 19px;
  }

  #cashSection.cash-exclusive-active-v576
  > .cash-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  #cashSection.cash-exclusive-active-v576
  > .cash-summary-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  #cashSection.cash-exclusive-active-v576
  input,

  #cashSection.cash-exclusive-active-v576
  select,

  #cashSection.cash-exclusive-active-v576
  textarea,

  #cashSection.cash-exclusive-active-v576
  button {
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  #cashSection.cash-exclusive-active-v576
  > .cash-summary-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes cash-exclusive-in-v576 {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
