/*
  AVANZA CONTROL V5.7.8
  Espacio de trabajo del expediente individual.
*/

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

.customer-detail-workspace-v578 {
  width: 100%;
  min-width: 0;
}

/* Encabezado */

.customer-detail-header-v578 {
  margin-bottom: 12px;
  padding: 15px 17px;

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

  align-items: center;
  gap: 14px;

  border: 1px solid #d6e3ed;
  border-radius: 16px;

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

  box-shadow:
    0 7px 20px
    rgba(7, 31, 61, .05);
}

.customer-detail-back-v578 {
  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;
}

.customer-detail-back-v578 span {
  font-size: 21px;
  line-height: 1;
}

.customer-detail-header-title-v578 {
  min-width: 0;
}

.customer-detail-header-title-v578 > span {
  display: block;
  margin-bottom: 4px;

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

.customer-detail-header-title-v578 h2 {
  margin: 0;

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

.customer-detail-header-title-v578 p {
  margin: 5px 0 0;

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

/* Menú interno */

.customer-detail-menu-v578 {
  margin-bottom: 12px;

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

  gap: 9px;
}

.customer-detail-option-v578 {
  width: 100%;
  min-width: 0;
  min-height: 73px;
  padding: 11px;

  display: grid;
  grid-template-columns:
    36px minmax(0, 1fr) 13px;

  align-items: center;
  gap: 9px;

  border: 1px solid #d6e2eb;
  border-radius: 12px;

  background: #ffffff;
  color: #42596e;

  text-align: left;
  cursor: pointer;
}

.customer-detail-option-v578:hover,
.customer-detail-option-v578.active {
  border-color: #80b6dc;

  background:
    linear-gradient(
      135deg,
      #e8f4fd,
      #f8fcff
    );

  box-shadow:
    inset 3px 0 0 #075fb3,
    0 5px 14px
    rgba(7, 95, 179, .08);
}

.customer-detail-icon-v578 {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: #e8f2fa;
  color: #075fb3;

  font-size: 14px;
  font-weight: 950;
}

.customer-detail-option-v578 strong,
.customer-detail-option-v578 small {
  display: block;
}

.customer-detail-option-v578 strong {
  color: #183650;
  font-size: 10px;
}

.customer-detail-option-v578 small {
  margin-top: 3px;

  color: #78899a;
  font-size: 8px;
  line-height: 1.35;
}

.customer-detail-option-v578 > b {
  color: #89a1b6;
  font-size: 18px;
}

/* Paneles */

.customer-detail-panel-v578 {
  display: none;
  width: 100%;
  min-width: 0;
}

.customer-detail-panel-v578.active {
  display: block;

  animation:
    customer-detail-in-v578
    .18s ease;
}

.customer-detail-panel-heading-v578 {
  margin-bottom: 9px;
  padding: 12px 14px;

  border: 1px solid #dce6ee;
  border-radius: 13px;

  background: #f8fbfd;
}

.customer-detail-panel-heading-v578 > span {
  display: block;
  margin-bottom: 3px;

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

.customer-detail-panel-heading-v578 h3 {
  margin: 0;

  color: #16334d;
  font-size: 15px;
}

.customer-detail-panel-heading-v578 p {
  margin: 4px 0 0;

  color: #74869a;
  font-size: 9px;
  line-height: 1.4;
}

.customer-detail-panel-v578
> .card {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* El título ya aparece en el encabezado del expediente */

.customer-detail-panel-v578
.customer-card
> h2 {
  margin-top: 0;
}

/* Acciones administrativas */

.customer-detail-actions-card-v578
.actions {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 9px;
}

.customer-detail-actions-card-v578
.actions
button {
  width: 100%;
  min-height: 45px;
  margin: 0;
}

/* Computadora */

@media (min-width: 1100px) {
  .customer-detail-workspace-v578 {
    min-height:
      calc(100vh - 145px);
  }
}

/* Tablet */

@media (
  min-width: 621px
) and (
  max-width: 1099px
) {
  .customer-detail-menu-v578 {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

/* Teléfono */

@media (max-width: 620px) {
  .customer-detail-header-v578 {
    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);
  }

  .customer-detail-back-v578 {
    width: 100%;
  }

  .customer-detail-header-title-v578 h2 {
    font-size: 18px;
  }

  .customer-detail-menu-v578 {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 7px;
  }

  .customer-detail-option-v578 {
    min-height: 68px;
    padding: 9px;

    grid-template-columns:
      32px minmax(0, 1fr);
  }

  .customer-detail-option-v578 > b {
    display: none;
  }

  .customer-detail-icon-v578 {
    width: 32px;
    height: 32px;
  }

  .customer-detail-actions-card-v578
  .actions {
    grid-template-columns: 1fr;
  }

  #detailSection input,
  #detailSection select,
  #detailSection textarea,
  #detailSection button {
    min-height: 44px;
  }
}

@keyframes customer-detail-in-v578 {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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