.container_cruceros{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#listado_cruceros, #listado_configuraciones{
    width: 45vw;
    height: 50vh;
    margin-right: 15px;
    border-right: 2px solid lightgray;
    overflow-x: scroll;
}
#form_cruceros{
    padding: 2vw;
    width: 45vw;
    height: 50vh;
}
.modalConfig{
    height: 60vh;
    width: 60vw;
}
.modalConfig textarea{
    height: 80%;
}
.modalNewPasajero{
    height: 82vh;
    width: 30vw;
}
.container_filtros{
    position: absolute;
    left: 10vw;
    background-color: rgb(63, 81, 152);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    z-index: 999;
    border-radius: 15px;
    transition: all .25s ease-in-out;
}
.container_inputs{
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto auto auto;
    gap: 10px; 
    transition: all .25s ease-in-out;
}

#modalApertura, #modalCierre {
    position: absolute;
    top: 13vh;
    z-index: 999;
    height: 75vh;
    width: 60vw;
    background-color: rgb(224, 226, 234);
    border-radius: 20px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: all .75s ease-in-out;
}
#listado_despachos, #listado_pendientes, #listado_en_crucero {
    position: fixed;
    margin-top: 2%;
    margin-right: 5vw;   
    overflow: auto;
    z-index: 9999;
    transition: all 1s ease-in-out;
}
  
  /* Webkit (Chrome, Safari, Edge) */
  #listado_despachos::-webkit-scrollbar, #listado_pendientes::-webkit-scrollbar, #listado_en_crucero::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  

  #listado_despachos::-webkit-scrollbar-track {
    background: rgb(13,110,235);
    border-radius: 4px;
  }
  
  #listado_pendientes::-webkit-scrollbar-track {
    background: rgb(255,193,7);
    border-radius: 4px;
  }
  
  #listado_en_crucero::-webkit-scrollbar-track {
    background: rgb(25,135,84);
    border-radius: 4px;
  }
  

  #listado_despachos::-webkit-scrollbar-thumb {
    background: rgb(10, 75, 161);
    border-radius: 4px;
  }
  
  #listado_pendientes::-webkit-scrollbar-thumb {
    background: rgb(184, 140, 7);
    border-radius: 4px;
  }

  #listado_en_crucero::-webkit-scrollbar-thumb {
    background: rgb(19, 101, 63);
    border-radius: 4px;
  }


  #listado_despachos::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  #listado_pendientes::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  #listado_en_crucero::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }