#overlayCarga {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(255 255 255 / 60%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10000;
    }

    #popupCarga {
      
    }

    #popupCarga img {
      width: 200px;
      
    }


body{
	margin: 0px;
}

.containerLogin{
	width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.boxLogin{
	width: 50%;
	height: 100vh;
	display: flex;
    align-items: center;
    justify-content: center;
}

.fondoLogin {
  position: relative;
  overflow: hidden;
}



.boxDateLogin{
	width: 40%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.LoginInput{
	padding: 10px;
}

.formInput{
	width: 100%;
    text-align: center;

}

.inputLogin {
  width: 100%;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background-color: white;
  color: black;
  outline: none;
  padding-left: 15px;
  font-family: math;
  color: #8b8b8b;
  box-sizing: border-box;
}

.inputLogin:hover,
.inputLogin:focus,
.inputLogin:focus-visible,
.inputLogin:active {
  border: 1px solid #ff6200;
}

.inputLogin::placeholder {
  color: #b1b1b1;
  opacity: 1;
}

.inputLogin:focus::placeholder {
  color: #fdc9a8;
}

.fondoLogin::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../Img/almacen.avif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4;         /* Opacidad solo del fondo */
  z-index: -1;          /* Manda la capa al fondo */
}

.buttonAcept{
	width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #ed5c02;
    color: #fff;
    border-radius: 5px;
    border: 0px;
    cursor: pointer;
}


.buttonAcept:hover,
.buttonAcept:focus,
.buttonAcept:focus-visible,
.buttonAcept:active {
	border: 0px;
    outline: none;
    background: #ff7e2e;
}



.bodyCaja{
	height: 92vh;
	display: flex;
    flex-wrap: wrap;
    width: 100%;
    
}








.productos{
	width: 75%;
	padding: 5px;
    box-sizing: border-box;
    height: 92vh;
    user-select: none;       /* Estándar */
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */

}
.acciones{
	width: 25%;
	padding: 5px;
    box-sizing: border-box;
    height: 92vh;
        background: #f7f7f7;
}

.productbody{
	height: 80vh;
    overflow-y: auto;
    padding: 5px;
    box-sizing: border-box;
}
.productfooter{
	height: 11vh;
	border-top: 1px solid #c9c9c98f;
	display: flex;
	flex-wrap: wrap;
    align-items: center;
}

.totales{
	height: 10vh;
    width: 33%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-right: 1px solid #cbcbcb;
    flex-direction: column;
    font-size: 25px;
    color: #515151;
        font-family: math;
}








header.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 8vh;               /* 👈 Altura fija */
	padding: 0 10px;
	box-sizing: border-box;
	     
	overflow: hidden;          /* Evita que el contenido sobresalga */
	border-bottom: 2px solid #ff6200;
}

.header > div {
	box-sizing: border-box;
	padding: 0 5px;
	overflow: hidden;
}

/* Logo */
.logo {
	flex: 0 0 5%;
	display: flex;
	align-items: center;
}
.logo img {
	height: 6vh;             /* Escala la imagen al alto del header */
	object-fit: contain;
}

/* Caja */
.caja {
	flex: 0 0 10%;
	font-size: 1.6vw;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Título */
.titulo {
	flex: 1 1 auto;
	text-align: center;
	font-size: 3vw;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Usuario */
.usuario {
	flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    font-size: 1vw;
    white-space: nowrap;
    overflow: hidden;
}
.usuario .nombre {
	font-size: 1.2vw;
	    color: #535353;
}
.usuario .hora {
	font-size: 1vw;
	color: #ff6200;
}



.productoPedido{
	    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
    box-shadow: 1px 2px 2px 0px #aaaaaa;
    border-radius: 5px;
}



.detalleBody{
	height: 72vh;
	display: flex;
    flex-wrap: wrap;
}
.detalleInput{
	height: 8vh;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.detalleFooter{
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 11vh;
    justify-content: space-between;
}

.inputCodigo{
	width: -webkit-fill-available;
    font-size: 30px;
    font-family: math;
    color: #777777;
    padding: 5px;
        border-radius: 5px;
    border: 1px solid black;

}


.btnConsultar{
	height: 11vh;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 35px;
    justify-content: center;
    background: #797979;
    color: white;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
}


.inputCodigo:hover,
.inputCodigo:focus,
.inputCodigo:focus-visible,
.inputCodigo:active {
  border: 1px solid #ff6200;
  outline: none;
}



.botonCaja{
	border: 1px solid #ff6200;
    border-radius: 5px;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    margin-bottom: 10px;
}

.active{
  background:#ff6200;
  color: white;
}

#sugerencias {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  width: 100%; /* ahora sí, toma el 100% del wrapper */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Para Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Para Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}



.itemselect{
   box-shadow: inset 12px 0 0 #ff6200;
    width: 10px;
    height: 10vh;
    border-radius: 5px 0px 0px 5px;
}



.agotado{
  background: #ffdfdf;
}



.descuento{
  margin-top: 2vh;
    margin-bottom: 2vh;
    height: 28vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
    border-radius: 5px;
    font-size: 40px;
    text-align: center;
}

.dataNota{
  height: 6vh;
  background: white;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 30px;
      color: #717171;
}