/**05**/
.content{
    display: grid;
    grid-template-columns: 1fr auto; /* superior ocupa todo, inferior su contenido */
    height: 100vh;
    font-size: 1em;
    overflow: hidden;
}

.superior {
  min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contenido {
    flex: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.banda {
    min-width: 0;
    max-width: 45vw;
  display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: auto;
}
.banda .ventana{
  left: 55vw;
}

.banda .ventana .submenu{
  width: 35vw;
}

.banda .contenido {
  display: none;
    flex-direction: column;
    overflow: hidden;
}

.banda .contenido.open {
    display: flex;
}
.banda 
.veBanda{
  display: flex !important;
}

/**Colores**/
.banda .ventana,
.banda .ventana .sidebar,
.banda .sticky-col,
.banda .sticky-table th
{
  background-color: rgba(100, 0, 0, 0.9);
  border: 1px solid rgba(100, 0, 0, 0.5);
}
.banda .vendido{
  background-color: rgba(100, 0, 100, 0.9);
}
.banda .table-wrapper tr:nth-child(even) {
    background-color: rgba(255, 200, 200, .2);
}
.banda .table-wrapper tr:nth-child(even) {
    background-color: rgba(100, 0, 0, .2);
}
.banda .submenu, .banda .sidebar{
  background-color: rgba(100, 0, 0, .7);
}

.banda > div:nth-child(2) .ventana,
.banda > div:nth-child(2) .ventana .sidebar,
.banda > div:nth-child(2) .sticky-col,
.banda > div:nth-child(2) .sticky-table th{
  background-color: rgba(0, 100, 0, 0.9);
  border: 1px solid rgba(0, 100, 0, 0.5);
}
.banda > div:nth-child(2) .vendido{
  background-color: rgba(0, 100, 100, 0.9);
}
.banda > div:nth-child(2) .table-wrapper tr:nth-child(even) {
    background-color: rgba(200, 255, 200, .2);
}
.banda > div:nth-child(2) .table-wrapper tr:nth-child(even) {
    background-color: rgba(0, 100, 0, .2);
}
.banda > div:nth-child(2) .submenu, .banda .sidebar{
  background-color: rgba(0, 100, 0, .7);
}

.banda > div:nth-child(3) .ventana,
.banda > div:nth-child(3) .ventana .sidebar,
.banda > div:nth-child(3) .sticky-col,
.banda > div:nth-child(3) .sticky-table th{
  background-color: rgba(0, 0, 100, 0.9);
  border: 1px solid rgba(0, 0, 100, 0.5);
}
.banda > div:nth-child(3) .vendido{
  background-color: rgba(100, 0, 100, 0.9);
}
.banda > div:nth-child(3) .table-wrapper tr:nth-child(even) {
    background-color: rgba(200, 200, 255, .2);
}
.banda > div:nth-child(3) .table-wrapper tr:nth-child(even) {
    background-color: rgba(0, 0, 100, .2);
}
.banda > div:nth-child(3) .submenu, .banda .sidebar{
  background-color: rgba(0, 0, 100, .7);
}