.formGeneral {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 15px;
}
@media (min-width: 768px) {
  .formGeneral {
    grid-template-columns: repeat(4, 1fr);
  }
  .formGeneral .col2-1 {
    grid-column: 1/3;
  }
  .formGeneral .col2-2 {
    grid-column: 3/5;
  }
}
.formGeneral div input, .formGeneral div select {
  display: block;
  width: 100%;
}

.formTracking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 15px;
}
.formTracking div input, .formTracking div select {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .formTracking {
    grid-template-columns: repeat(2, 1fr);
  }
}
.formTracking table {
  width: 100%;
}
.formTracking table thead th, .formTracking table thead td {
  width: 50%;
}
.formTracking table tbody {
  text-align: center;
}

table.totales tbody tr td:nth-child(2) {
  text-align: right;
  letter-spacing: 1.5;
}

.f_pago {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contItems {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  padding: 5px 0;
  font-size: 1.5rem;
}
.contItems .btn {
  cursor: pointer;
  position: relative;
}
.contItems .btn:hover {
  color: black;
}
.contItems .btn:hover::after {
  position: absolute;
  content: attr(data-content);
  top: -26px;
  left: -19px;
  background: #d3d3d3;
  padding: 5px;
  opacity: 0.9;
  font-size: 12px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
.container-fluid {
  padding: 0 !important;
}

nav.navbar {
  color: white;
}
nav.navbar li a {
  color: white !important;
}
nav.navbar li a.dropdown-item {
  color: black !important;
}

.fondo {
  background: url("../images/sanDiego.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vw;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}
.fondo img {
  border-radius: 50%;
  margin: 0 auto 50px;
}

form {
  width: 100%;
}

div.principal {
  padding-top: 20px !important;
  width: 100%;
  max-width: 100%;
}

.form-footer div {
  padding-top: 30px;
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .form-footer div {
    flex-wrap: wrap;
  }
  .form-footer div a, .form-footer div button {
    width: 45%;
    margin: 5px auto !important;
  }
}
.form-footer div button, .form-footer div a {
  margin: 0 15px 15px;
}

.buscarProveedores .row > div {
  display: flex;
  align-items: center;
}
.buscarProveedores .row > div h5, .buscarProveedores .row > div button {
  width: auto;
  margin: 0 auto;
}
.buscarProveedores .row > div input {
  width: 70%;
}

.agregarProveedor .formProvedor {
  display: flex;
  justify-content: space-around;
  padding-top: 15px;
}
.agregarProveedor .formProvedor .botones {
  display: flex;
  justify-content: center;
}
.agregarProveedor .formProvedor .botones button {
  margin: 15px;
}

table#table_id, table.table_id {
  font-size: 12px;
  margin: 0 auto;
  text-align: center;
}
table#table_id th, table#table_id td, table.table_id th, table.table_id td {
  text-align: center;
  word-break: break-word;
}
table#table_id td:nth-child(2) a, table.table_id td:nth-child(2) a {
  color: black;
}
table#table_id ul.dtr-details, table.table_id ul.dtr-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}
table#table_id ul.dtr-details span.dtr-data, table.table_id ul.dtr-details span.dtr-data {
  display: inline-block;
  white-space: pre-wrap;
  width: 90%;
  padding: 0 15px;
}

#table_id_wrapper .top {
  padding-top: 10px;
  display: flex !important;
  justify-content: space-between !important;
}
@media only screen and (max-width: 767px) {
  #table_id_wrapper .top {
    flex-direction: column;
  }
}
#table_id_wrapper .top div:nth-child(1) {
  order: 1;
}

table.dataTable > thead > tr > th:not(.sorting_disabled),
table.dataTable > thead > tr > td:not(.sorting_disabled) {
  padding: 0 !important;
}

h5#titulo {
  font-weight: 900;
}

.pagado {
  font-weight: 700;
  padding: 5px;
  background: green;
  color: white;
}

.secaction {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.secaction2 {
  display: flex;
  align-content: center;
  justify-content: center;
}
.secaction2 i {
  margin: 0 0.1em;
}

tr.rowpagado {
  background: #ffe143;
  color: black;
}

tr.backAlmacen {
  background: #5f939a;
}
tr.backAlmacen td:first-child a {
  color: black;
}

tr.salidaParcial {
  background: linear-gradient(90deg, mediumpurple 50%, pink 50%);
}

.salidaParcial {
  background: linear-gradient(90deg, mediumpurple 50%, pink 50%);
}

tr.backControl {
  background: #cc947f;
}
tr.backControl td:first-child a {
  color: black;
}

tr.otroEmpleado {
  background: #f39f7f;
}
tr.otroEmpleado td:first-child a {
  color: black;
}

tr.backPedimento {
  background: #eba83a;
  color: black;
}
tr.backPedimento td:first-child a {
  color: white;
}
tr.backPedimento td:first-child a {
  color: black;
}

tr.backPedimentoCostura {
  background: linear-gradient(90deg, #eba83a 50%, #eb3a3a 50%);
  color: black;
}
tr.backPedimentoCostura td:first-child a {
  color: white;
}
tr.backPedimentoCostura td:first-child a {
  color: black;
}

tr.backPedimentoNom {
  background: linear-gradient(90deg, #eba83a 50%, #c4eb3a 50%);
  color: black;
}
tr.backPedimentoNom td:first-child a {
  color: white;
}
tr.backPedimentoNom td:first-child a {
  color: black;
}

tr.backSalida {
  background: mediumpurple;
  color: black;
}
tr.backSalida td:first-child a {
  color: black;
}

tr.backGglobal {
  background: #F8F988;
  color: black;
}
tr.backGglobal td:first-child a {
  color: black;
}

tr.backCalifornias {
  background: #F0FF42;
  color: black;
}
tr.backCalifornias td:first-child a {
  color: black;
}

tr.backSalidaSD-tij {
  background: #eb3a3a;
  color: black;
}
tr.backSalidaSD-tij td:first-child a {
  color: black;
}

tr.backSalidaTij-lpz {
  background: #3ac2eb;
  color: black;
}
tr.backSalidaTij-lpz td:first-child a {
  color: black;
}

.backCostura {
  background: #B5F1CC;
  color: black;
}
.backCostura td:first-child a {
  color: black;
}

.backTijLpz {
  background: #EF4B4B;
  color: black;
}
.backTijLpz td:first-child a {
  color: black;
}

.backAd {
  background: #E5BEEC;
  color: black;
}
.backAd td:first-child a {
  color: black;
}

.backRepTij {
  background: #4b9cef;
  color: black;
}
.backRepTij td:first-child a {
  color: black;
}

.backLlegadaLpz {
  background: #6f9c5f;
  color: black;
}
.backLlegadaLpz td:first-child a {
  color: black;
}

.backGestAme {
  background: #3aeba1;
  color: black;
}
.backGestAme td:first-child a {
  color: black;
}

.backGestProy {
  background: #88baf9;
  color: black;
}
.backGestProy td:first-child a {
  color: black;
}

.bgSalidaInterna {
  background: #ffb3b3;
  color: black;
}
.bgSalidaInterna td:first-child a {
  color: black;
}

.backEntregado {
  background: green;
  color: white;
}
.backEntregado td:first-child a {
  color: white;
}

.backLogix {
  background: #495057;
  color: white;
}
.backLogix td:first-child a {
  color: white;
}

.backMartinez {
  background: #a64bdf;
  color: white;
}
.backMartinez td:first-child a {
  color: white;
}

.backAlmacenRevision {
  background: linear-gradient(to right, #3d7eaa, #ffe47a) #a64bdf;
}
.backAlmacenRevision td:first-child a {
  color: white;
}

.backSalidaParcial {
  background: linear-gradient(to right, mediumpurple 30%, #f0e100 70%);
}
.backSalidaParcial td:first-child a {
  color: white;
}

.backDevProveedor {
  background: #7F7;
}

tr.selected {
  background: #b0bed9;
}

#sectFloat {
  padding: 25px 6%;
}
#sectFloat #btnCrear, #sectFloat #btnRegresar, #sectFloat #btnguardar {
  z-index: 10001;
  right: 5%;
  bottom: 5%;
  background: #d3d3d3;
  padding: 15px;
  font-weight: 900;
  width: auto;
  text-shadow: 2px 2px 2px #fff;
  box-shadow: 2px 2px 2px #333;
  transition: 0.3s ease-in-out;
  margin: 5px;
}
#sectFloat #btnCrear:hover, #sectFloat #btnRegresar:hover, #sectFloat #btnguardar:hover {
  transition: 0.3s ease-in-out;
}
#sectFloat #btnCrear:hover span, #sectFloat #btnRegresar:hover span, #sectFloat #btnguardar:hover span {
  display: none;
}
#sectFloat #btnCrear:hover {
  background: green;
  color: white;
  text-shadow: 2px 2px 2px #333;
}
#sectFloat #btnCrear:hover::before {
  content: "Crear pedimento";
}
#sectFloat #btnRegresar:hover {
  background: gold;
  color: black;
  text-shadow: 2px 2px 2px #fff;
}
#sectFloat #btnRegresar:hover::before {
  content: "Regresar";
}
#sectFloat #btnguardar:hover {
  background: #1597bb;
  color: white;
  text-shadow: 2px 2px 2px #333;
}
#sectFloat #btnguardar:hover::before {
  content: "Guardar";
}

#menuNotify {
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.contEtiquetas {
  width: 100%;
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 0 15px;
}
.contEtiquetas > div {
  width: 50%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.contEtiquetas .item.titulo {
  flex: 1 100%;
}
.contEtiquetas .item {
  width: 33.33%;
}
@media only screen and (max-width: 768px) {
  .contEtiquetas .item {
    width: 100%;
    text-align: center;
  }
}
.contEtiquetas .item {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .contEtiquetas .item {
    width: 100%;
    margin: 5px 0;
  }
}

ul#listPed li {
  width: 10%;
  max-width: 15%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 576px) {
  ul#listPed li {
    width: 50%;
    max-width: 50%;
  }
}
ul#listPed li span {
  display: none;
}
@media only screen and (max-width: 576px) {
  ul#listPed li span {
    display: block;
  }
}
ul#listPed li:hover span {
  display: flex;
  align-items: center;
}

ul#listTrack, ul#listTrackLpz {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 15px;
}
ul#listTrack li.list-group-item, ul#listTrackLpz li.list-group-item {
  width: 33.33%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  word-break: break-all;
}
@media only screen and (max-width: 576px) {
  ul#listTrack li.list-group-item, ul#listTrackLpz li.list-group-item {
    width: 100%;
  }
}
ul#listTrack li.list-group-item span, ul#listTrackLpz li.list-group-item span {
  display: none;
}

ul#listTrackLpz span {
  display: none;
}
ul#listTrackLpz li:hover span {
  display: flex !important;
  align-items: center;
}

ul#listEntradas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
ul#listEntradas li {
  width: 50%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  word-break: break-all;
}
ul#listEntradas li span {
  display: none;
}

.accordion > .card {
  overflow: visible !important;
}

#acordeonIncrAparte {
  height: 250px;
  overflow: auto;
}

.form-salida-SD {
  display: none;
}
@media only screen and (max-width: 576px) {
  .form-salida-SD div.form-inline {
    flex-direction: column;
  }
  .form-salida-SD div.form-inline #btnFinal {
    margin: 0 !important;
    padding: 5px;
  }
}

.form-salida-Tij {
  display: none;
}

.form-Recp-LPZ {
  display: none;
}

.card-salida:hover {
  background: #007bff !important;
  color: black !important;
  transition: 0.3s ease-in-out;
}

#form-tijuana .form-group {
  width: 33.33%;
}
@media only screen and (max-width: 576px) {
  #form-tijuana .form-group {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  #form-tijuana .form-group {
    width: 50%;
  }
}

#banner {
  text-align: center;
  padding: 10px;
  background: red;
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 2;
  display: none;
}

table#tableTraking {
  display: inline-table;
}
table#tableTraking th:first-child {
  width: 25%;
}

.quitarMovil, .quitarMovil2 {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .quitarMovil, .quitarMovil2 {
    display: flex !important;
  }
}

@media screen and (min-width: 768px) {
  .quitarMovil {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .quitarMovil2 {
    display: flex !important;
  }
}

#sectionTableTrack {
  max-height: 160px;
  overflow: auto;
}

.modal {
  overflow-y: auto !important;
}

.btn-custom {
  background: #5000ff !important;
  border-color: #5000ff !important;
  color: white !important;
}

#contSal .cont {
  margin-top: 5vw;
  display: flex;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #contSal .cont {
    margin-top: 10vw;
    flex-direction: column;
  }
}
#contSal .cont div {
  width: 33.33%;
  background: #343a40;
  margin: 15px;
  border-radius: 5px;
  padding: 40px 0;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #contSal .cont div {
    width: 100%;
    margin: 5px 0;
  }
}
#contSal .cont div:hover {
  background: #007bff;
  transition: 0.3s ease-in-out;
}

.lista-pedimento {
  max-height: 320px;
  overflow: auto;
}

.grid-iconos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.full-screen {
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
}

.full_modal-dialog {
  width: 98% !important;
  height: 92% !important;
  min-width: 98% !important;
  min-height: 92% !important;
  max-width: 98% !important;
  max-height: 92% !important;
  padding: 0 !important;
}

.full_modal-content {
  height: 99% !important;
  min-height: 99% !important;
  max-height: 99% !important;
}/*# sourceMappingURL=style.css.map */