/* @import url('./libs/fuentes/OpenSans-VariableFont_wdth,wght.ttf'); */

@font-face {
  font-family: 'Open-Sans';
  src: url('/libs/fuentes/OpenSans-VariableFont_wdth,wght.ttf');
}

:root {
  --ancho-boton-mobile: 7rem;

  --color-azul-1: hsl(204, 100%, 36%);
  --color-azul-2: hsl(180, 90%, 45%);
  --color-verde-1: hsl(120, 100%, 25%);
  --color-verde-2: hsl(128, 52%, 46%);
  --color-rojo-1: hsl(0, 77%, 59%);
  --color-naranja-1: hsl(39, 100%, 50%);

  --color-blanco: hsl(0, 0%, 98%);
  --color-negro: hsl(0, 0%, 10%);
  --color-gris: hsl(0, 0%, 50%);

  --fuente: 'Open-Sans', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;

  --fuente-negrita: 700;
  --fuente-seminegrita: 600;
  --fuente-normal: 400;
  --fuente-ligera: 200;

  --fuente-5xs: clamp(0.5rem, 0.2857rem + 1.1429vw, 1rem); /*8px-16px*/
  --fuente-4xs: clamp(0.5625rem, 0.375rem + 1vw, 1rem); /*9px-16px*/
  --fuente-3xs: clamp(0.625rem, 0.4643rem + 0.8571vw, 1rem); /*10px-16px*/
  --fuente-2xs: clamp(0.75rem, 0.6429rem + 0.5714vw, 1rem); /*12px-16px*/
  --fuente-xs: clamp(0.875rem, 0.8214rem + 0.2857vw, 1rem); /*14px-16px*/
  --fuente-s: clamp(0.9375rem, 0.9028rem + 0.1111vw, 1rem); /*15px-16px*/
  --fuente-m: clamp(1rem, 0.9306rem + 0.2222vw, 1.125rem); /*16px-18px*/
  --fuente-l: clamp(1rem, 0.8611rem + 0.4444vw, 1.25rem); /*16px-20px*/
  --fuente-xl: clamp(1.125rem, 1.0556rem + 0.2222vw, 1.25rem); /*18px-20px*/

  /* COLORES DE CATEGORIAS PARA COCINA */
  --color-cat-1: hsl(39, 100%, 70%);
  --color-cat-2: hsl(0, 83%, 85%);
  --color-cat-3: hsl(72, 83%, 70%);
  --color-cat-4: hsl(122, 83%, 70%);
  --color-cat-5: hsl(255, 54%, 81%);
  --color-cat-6: hsl(294, 54%, 82%);
  --color-cat-7: hsl(212, 83%, 70%);
  --color-cat-8: hsl(242, 63%, 70%);
  --color-cat-9: hsl(272, 83%, 70%);
  --color-cat-10: hsl(302, 83%, 70%);

  /* COLORES ALARMA COCINA  */

  --color-alarm: hsl(160, 88%, 48%);
  --color-alarm-5min: hsl(32, 100%, 50%);
  --color-alarm-10min: hsl(0, 79%, 49%);
  --color-alarm-10min-2: hsl(0, 100%, 79%);
  --color-alarm-15min: hsl(0deg 9.76% 13.77%);

  /* COLORES DE ORDEN DE PLATO */
  --color-ord-1: hsl(128, 69%, 57%);
  --color-ord-2: hsl(50, 62%, 56%);
  --color-ord-3: hsl(289, 77%, 66%);
  --color-ord-4: hsl(195, 96%, 59%);
  --color-ord-5: hsl(30, 70%, 60%);
  --color-ord-6: hsl(250, 100%, 85%);

  /* COLORES DE BOTONES CATEGORIAS PARA COMANDERO */
  /* --color-boton-cat-1: hsl(62, 89%, 48%);
  --color-boton-cat-2: hsl(191, 100%, 80%);
  --color-boton-cat-3: hsl(106, 61%, 54%);
  --color-boton-cat-4: hsl(189, 59%, 33%);
  --color-boton-cat-5: hsl(357, 100%, 45%);
  --color-boton-cat-6: hsl(119, 91%, 40%);
  --color-boton-cat-7: hsl(68, 97%, 26%);
  --color-boton-cat-8: hsl(249, 78%, 63%);
  --color-boton-cat-9: hsl(232, 84%, 74%);
  --color-boton-cat-10: hsl(222, 6%, 31%);
  --color-boton-cat-11: hsl(303, 70%, 70%);
  --color-boton-cat-12: hsl(355, 51%, 38%);
  --color-boton-cat-13: hsl(135, 65%, 48%);
  --color-boton-cat-14: hsl(217, 16%, 85%);

  --color-boton-cat-15: hsl(152, 83%, 70%);
  --color-boton-cat-16: hsl(182, 73%, 80%);
  --color-boton-cat-17: hsl(212, 83%, 70%);
  --color-boton-cat-18: hsl(242, 63%, 70%);
  --color-boton-cat-19: hsl(272, 83%, 70%);
  --color-boton-cat-20: hsl(302, 83%, 70%); */
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  --outline-color: var(--color-azul-1);
  outline-color: var(--outline-color);
}

/* Bordered form */
form {
  border: 0px;
  margin: 0;
  /*border: 0px solid #f1f1f1;*/
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--fuente);
}

button {
  border: none;
  background-color: transparent;
}

input,
textarea,
select {
  --bg-color: var(--color-blanco);
  --border-color: #bdbdbd;
  background-color: var(--bg-color);
  border-color: var(--border-color);
  font-family: var(--fuente);
  min-height: 3rem;
  font-size: 1rem;
}

input[type='checkbox'] {
  min-height: 0;
  height: 1.5rem;
  aspect-ratio: 1;
}
input[type='radio'] {
  min-height: 0;
  height: 1rem;
  aspect-ratio: 1;
}

/* Full-width inputs */
input[type='text'],
input[type='password'],
input[type='date'],
input[type='number'] {
  width: 100%;
  padding: 0.5rem;
  /* margin: 5px 0; */

  /*width: 100%;
    padding: 8px 0px;
    margin: 3px 0;*/

  /* display: inline-block;*/
  /*border: 1px solid #ccc;
    box-sizing: border-box;*/
}

/* Quita los botones de los input[number] */
/* #Tabla td > input[type='number']::-webkit-inner-spin-button,
#Tabla td > input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */

input[type='number'].input_sin_botones::-webkit-inner-spin-button,
input[type='number'].input_sin_botones::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==== Readonly ==== */

/* input[readonly] {
  background-color: color-mix(
    in srgb,
    var(--color-gris) 20%,
    var(--color-blanco) 60%
  );
}

input[readonly]::placeholder {
  color: var(--color-negro);
} */

.Text_number {
  width: 100%;
  padding: 0.5rem;
  margin: 3px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Full-width inputs */
select {
  width: 100%;
  padding: 0.5rem;
  /* margin: 3px 0; */
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

select:focus-visible {
  --outline-color: var(--color-azul-1);
  outline-color: var(--outline-color);
}

button {
  /* background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 3px 0;
    border: none;
    cursor: pointer;
    width: 100%;*/
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}
.boton_logo:hover {
  pointer-events: none;
  opacity: initial;
}
/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 0.5rem;
  background-color: #f44336;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

.titulo_login {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;

  * {
    margin: 0 !important;
  }
}

/* Avatar image */
img.avatar {
  width: 5%;
  border-radius: 50%;
}

/* Add padding to containers */
/* .container {
  padding: 40%;
  padding-top: 0px;
} */

.container_lista_empresas_manager {
  width: 200%;
  padding-top: 0px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.label_lista_empresas_manager {
  width: 250%;
  border: 2px solid var(--color-azul-1);
}

/* Add padding to containers */
.container_filtro {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */

  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);

  /* padding: 1% 0px;
    padding-top: 0px;*/
  width: 100%;
  /* height: 80px;*/
  /*margin-bottom: 20px;*/
  border: 0px;
  border-radius: 10px 10px 0 0;
  /*box-shadow: 1px 1px 1px #0a2d47;*/
}

.container_dias {
  /* padding: 1% 0px;
    padding-top: 0px;*/
  margin-top: 0px;
  width: 50%;
  height: 30px;
}

.container_filtro_productos {
  padding: 0.5rem;
  /* padding-top: 0px; */
  width: 90%;
  height: 5%;
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 1rem;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}

table {
  /*border:1px solid black;*/
}
table tr:first-of-type > th:first-of-type {
  border-radius: 12px 0 0 0;
}
table tr:first-of-type > th:last-of-type {
  border-radius: 0 12px 0 0;
}

th {
  --bg-color: var(--color-azul-1);
  --color: var(--color-blanco);
  box-sizing: border-box;
  min-width: 40px;
  padding: 0.5rem;
  margin: 0px 0;
  border: 0px;

  background: var(--bg-color);
  color: var(--color);

  font-family: var(--fuente);
  font-size: var(--fuente-m);
  font-weight: var(--fuente-seminegrita);
  text-transform: uppercase;
}

td {
  border: 1px solid black;
  padding: 0.5rem;
  margin: 0px 0;
  /*display: inline-block;*/
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;

  background: rgb(231, 230, 230);
  /* width: auto !important; */
  min-width: 40px;
}

.th_filtro {
  background: var(--color-azul-1);
  border: 0px;
  /*box-shadow: 4px 3px 4px #aaa;*/
  /*font-size: 18px; */
  font-size: 14px;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  width: auto;
  margin-left: 0px;
  /* height: 20px;*/
  /* padding: 0px;*/
}

.td_filtro {
  --bg-color: var(--color-blanco);
  --border-color: var(--color-azul-1);

  border: 1px solid black;
  padding: 0.5rem;
  margin: 0;
  border: 0px solid var(--border-color);
  background-color: var(--bg-color);
  box-sizing: border-box;
}

.th_filtro_sin_fondo {
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);
  border: 0px;
  padding: 0.5rem;
}
.td_filtro_sin_fondo {
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);

  border: 0px;
  padding: 0.5rem;
}

.input_text {
  width: 100%;
  height: 25px;

  margin: 3px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.Boton_listado_editar {
  background-color: transparent;

  padding: 0 !important;
  margin: 0px 0;
  border: none;
  cursor: pointer;
  width: auto;
  color: black;
  vertical-align: middle;
}

.Boton_selecciones {
  background-color: #04aa6d;
  color: white;
  padding: 0.5rem;
  margin: 0px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 20px;
}

.Boton_selecciones_fondo_rojo {
  background-color: #f34e4e;
  color: white;
  padding: 0.5rem;
  margin: 0px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 20px;
}

.Boton_listado_eliminar {
  background-color: transparent;

  padding: 0 !important;
  margin: 0px 0;
  border: none;
  cursor: pointer;
  width: auto;
  color: black;
  vertical-align: middle;
}

.Boton_listado_guardar {
  background-color: transparent;

  padding: 0 !important;
  margin: 0px 0;
  border: none;
  cursor: pointer;
  width: auto;
  color: black;
  vertical-align: middle;
}

.Boton_filtrar {
  background-color: transparent !important;
  color: white;
  padding: 0px;
  margin: 0px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

.Boton_crear {
  --bg-color: var(--color-azul-1);
  --color: var(--color-blanco);
  --shadow: #0a2d47;

  background-color: var(--bg-color);
  color: var(--color);
  padding: 0.5rem;
  border: 2px solid currentColor;
  cursor: pointer;
  width: auto;
  min-width: 5rem;
  max-width: 17rem;
  border-radius: 8px;
  height: auto;
  min-height: 2rem;
  font-size: 1.1rem;
  font-family: var(--fuente);
  font-weight: var(--fuente-seminegrita);
  box-shadow: 1px 1px 1px var(--shadow);
}

.Boton_crear_rojo {
  --bg-color: var(--color-rojo-1);
  --color: var(--color-blanco);
  --shadow: #0a2d47;

  background-color: var(--bg-color);
  color: var(--color);
  padding: 0.5rem;
  border: 2px solid currentColor;
  cursor: pointer;
  width: auto;
  min-width: 5rem;
  max-width: 17rem;
  border-radius: 8px;
  height: auto;
  min-height: 2rem;
  font-size: 1.1rem;
  font-family: var(--fuente);
  font-weight: var(--fuente-seminegrita);
  box-shadow: 1px 1px 1px var(--shadow);
}

.Observaciones {
  padding: 0.5rem;
  /* margin: 0px 0; */
}

.td_observaciones {
  --border-color: #ccc;

  padding: 0.5rem;
  margin: 0;
  display: inline-block;
  /* border: 1px solid #ccc; */
  border: 1px solid var(--border-color);
  box-sizing: border-box;

  background: rgb(231, 230, 230);
}

.Email_gestoria_select {
  margin: 0px 0;
  height: 30px;
  margin-bottom: 0px;
}

.td_botones {
  border: 1px solid black;
  padding: 0.5rem;
  margin: 0px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  box-sizing: border-box;

  background: rgb(231, 230, 230);
}

.container_indice_principal {
  /* padding: 0%; */
  width: 20%;
  /* padding-top: 0px; */
  /* padding-left: 40%; */
  background-color: #1c51a0;
  border: 0px;
}

.background_indice_princpal {
  margin: 0px;
  background-color: #1c51a0;
}

.form_indice_principal {
  border: 0px;
}

.centrar_div {
  margin: 0 auto;
  display: block;
}

.texto_blanco_titulos {
  /* text-shadow: 2px 2px 4px #000; */
  /* margin-top: 10px; */
  color: rgb(238, 238, 238);
  text-align: center;
  font-size: 60px;
  font-family: var(--fuente);
  font-weight: 400;
}

.texto_blanco_ventanas {
  /* text-shadow: 2px 2px 4px #000; */
  /* margin-top: 10px; */
  color: rgb(238, 238, 238);
  text-align: left;
  font-size: 40px;
  font-family: var(--fuente);
  font-weight: 600;
}

.texto_negro_ventanas {
  /* text-shadow: 2px 2px 4px #000;*/
  /* margin-top: 10px; */
  color: rgb(0, 0, 0);
  text-align: left;
  font-size: 25px;
  font-family: var(--fuente);
  font-weight: 400;
}

.texto_negro_ventanas_m {
  /* text-shadow: 2px 2px 4px #000;*/
  /* margin-top: 10px; */
  color: rgb(0, 0, 0);
  text-align: left;
  /*font-size: 18px; */
  font-size: 14px;
  font-family: var(--fuente);
  font-weight: 400;
}

.texto_blanco_centro {
  /* margin-top: -10px; */
  color: rgb(238, 238, 238);
  text-align: center;
  font-size: 125px;
  font-family: var(--fuente);
  font-weight: 400;
}

.tabla_indice_principal {
  width: 80%;
  /* padding-top: 20px;
  padding-left: 30%; */
}

.th_sin_fondo {
  background-color: #fff;
  border: 0px;
  /* padding: 0px 0px; */
}

.icono_reloj {
  width: 12px;
  height: 12px;

  align-self: center;
}

.Boton_reloj {
  background-color: rgba(204, 204, 204, 0);

  border: none;
  cursor: pointer;
  width: 12px;
  height: 12px;
  align-content: center;
}

.divider {
  height: 7px;
}

.Select_sustitucion {
  width: 100%;
  padding: 0.5rem;

  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align-last: left;
}

.Select_horarios {
  width: 40%;
  padding: 0.5rem;

  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align-last: left;
}

.select_horario_entrada {
  background-color: #50ef94;
}

.Div_selector_horario {
  background-color: #9fc5ff;
}

.H4_Div_selector_horario {
  margin-top: 0px;
  /* margin-bottom: 1px;
  margin-left: 1px; */
}

.Boton_guardar_horario {
  background-color: rgb(107, 107, 107);

  padding: 0px 0px;
  margin-top: 0px;
  margin-left: 0px;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  align-content: center;
}

.Boton_cerrar_horario {
  background-color: rgb(255, 86, 86);

  padding: 0px 0px;
  margin-top: 0px;
  margin-right: 0px;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  align-content: center;
}

.Boton_guardar_disquette {
  background-color: rgb(36, 182, 0);

  padding: 0px 0px;
  margin-top: 0px;
  margin-right: 0px;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  align-content: center;
}

.Boton_guardar_disquette_rojo {
  background-color: rgb(255, 86, 86);

  padding: 0px 0px;
  margin-top: 0px;
  margin-right: 0px;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  align-content: center;
}

.icono_guardar_disquette {
  padding: 0px 0px;
  width: 25px;
  height: 25px;
  margin-left: 0px;
  margin-top: 0px;
  align-self: center;
}

.icono_guardar_disquette_horarios {
  padding: 0px 0px;
  width: 50px;
  height: 50px;
  margin-left: 0px;
  margin-top: 0px;
  align-self: center;
  background-color: transparent;
  border: 0px;
}

.div_flotante {
  position: absolute;
  border-radius: 10px;
  border: 2px solid var(--color-azul-1);
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);

  padding: 30 250;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px; /* si el contenedor es de 200 x 200 */
  text-align: center;
}

.div_flotante_productos_restaurantes {
  position: absolute;
  background-color: rgb(165, 184, 187);
  padding: 30 250;
  top: 25%;
  left: 25%;
  margin: -100px 0 0 -200px; /* si el contenedor es de 200 x 200 */
}

/* ////////////////////////////////////////////////////////////    TABS ////////////////////////////////////////////////////////////////*/
/* Style the tab */
.tab {
  position: relative;
  top: 7px;
  width: 60%;
  height: 55px;
  overflow: hidden;
  border: 0px solid rgb(0, 0, 0);
  background-color: transparent;
  border-bottom: 0px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: var(--color-azul-1);
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  color: white;
  border-radius: 10px 10px 0 0;
  border: 2px solid var(--color-azul-1);
  border-bottom: 0px;
  text-transform: uppercase;
}

/* Change background color of buttons on hover */
.tab button:hover {
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);
  color: black;
  border-bottom: 0px;
}

/* Create an active/current tablink class */
.tab button.active {
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);
  color: #0a2d47;
  border: 2px solid var(--color-azul-1);
  border-bottom: 0px;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0.5rem;
  /* border: 2px solid var(--color-azul-1); */
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);
}

/* Style the close button */
.topright {
  float: right;
  cursor: pointer;
  font-size: 28px;
}

/*//////////////////////////////////////////////////////// INI PROVEEDORES ////////////////////////////////////////////////////////////////////////////*/

.tabla_listado {
  border-radius: 20px;
  border: 2px solid var(--color-azul-1);
  margin-bottom: 20px;
}

table tr:last-of-type > td:first-of-type {
  border-radius: 0 0 0 10px;
}
table tr:last-of-type > td:last-of-type {
  border-radius: 0 0 10px 0;
}

.td_lista_proveeedores {
  --border-color: var(--color-azul-1);
  padding-inline: 0.5rem;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_empleados {
  --border-color: var(--color-azul-1);
  padding-inline: 0.5rem;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /* box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_pedidos {
  --border-color: var(--color-azul-1);
  padding-inline: 0.5rem;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_pedidos_agregar_productos {
  --border-color: var(--color-azul-1);
  padding-inline: 0.5rem;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_productos_restaurantes {
  --border-color: var(--color-azul-1);
  padding-inline: 0.5rem;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.th_lista_proveedores {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px;*/
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_pedidos {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_pedidos_agregar_productos {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_productos_restaurantes {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px;*/
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_productos {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_categorias {
}

.th_lista_inventarios {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px;*/
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_impuestos {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  /*font-weight: 400;*/
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_inventarios {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /* font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_almacenes {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /* box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px;*/
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_empleados {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_gestorias {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.th_lista_unidades_de_medida {
  background: var(--color-azul-1);
  /* border-radius: 10px;*/
  border: 0px;

  color: white;

  /*box-shadow: 4px 3px 4px #aaa;*/

  /*font-size: 18px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  /* text-shadow: 1px 1px 4px black; */
  /* position: sticky;
  top: 65px; */
  width: auto;
}

.td_lista_productos {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  /*font-size: 18px;*/
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_inventarios {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_categorias {
  padding: 0.5rem;
  /* vertical-align: middle !important; */
  /* height: 55px; */
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.5;
  /* display: table-cell; */

  /*font-size: 18px;*/
  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_formas_de_pago {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);

  line-height: 1.42857143;
  display: table-cell;

  /*font-size: 18px;*/
  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_impuestos {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_inventarios {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_almacenes {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_gestorias {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.td_lista_unidades_de_medida {
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: middle !important;
  height: 55px;
  /* border-radius: 5px; */
  border-left: 0px;
  border-top: 0px;
  border-bottom: 2px solid var(--color-azul-1);
  border-right: 2px solid var(--color-azul-1);
  line-height: 1.42857143;
  display: table-cell;

  font-size: 1rem;
  /*font-size: 20px;*/
  background: transparent;
  /*box-shadow: 0px 0px 10px #aaa;*/
  font-family: var(--fuente);
}

.th_inicio {
  border-left: 2px solid var(--color-azul-1);
  border-top: 2px solid var(--color-azul-1);
  border-bottom: 0px;
  border-right: 0px;

  border-radius: 10px 0px 0px 0px;
}

.th_final {
  border-left: 0px;
  border-top: 2px solid var(--color-azul-1);
  border-bottom: 0px;
  border-right: 2px solid var(--color-azul-1);

  /*box-shadow: 3px 3px 3px #aaa;*/

  border-radius: 0px 10px 0px 0px;
}

.th_medio {
  border-left: 2px solid var(--color-azul-1);
  border-top: 2px solid var(--color-azul-1);
  border-bottom: 0px;
  border-right: 2px solid var(--color-azul-1);

  /*box-shadow: 3px 3px 3px #aaa;*/

  border-radius: 10px 10px 0px 0px;
}

.th_boton,
.td_boton {
  /* min-width: 80px;
  max-width: 80px; */
  text-align: center;
}

.th_xs,
.td_xs {
  min-width: 30px;
  /*max-width: 120px;*/
  max-width: 140px;
}

.th_s,
.td_s {
  min-width: 60px;
  max-width: 240px;
}

.th_m,
.td_m {
  min-width: 90px;
  max-width: 360px;
}

.th_l,
.td_l {
  min-width: 120px;
  max-width: 480px;
}

.th_xl,
.td_xl {
  min-width: 150px;
  max-width: 600px;
}

.th_xxl,
.td_xxl {
  min-width: 180px;
  max-width: 720px;
}

.logo_medusa {
  width: 20%;
  height: 40%;
  margin: 0 auto;
  display: block;
  margin-bottom: 70px;

  max-width: 300px;
  max-height: 300px;
}

.center_botones_menu_principal {
  display: flex;
  justify-content: center;
  position: fixed;
  /*bottom: 5%;*/
  bottom: 10%;
  width: 100%;
}

.fila_2_center_botones_menu_principal {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 35%;
  width: 100%;
}

.div_botones_menu_principal {
  width: 100%;
  max-width: 100px;
  min-width: 50px;
  height: auto;
  margin-left: 3%;
  margin-right: 3%;
}

.button_menu_principal {
  margin: 0;
  padding: 10px;
  width: 100%;
  height: auto;
  border: 2px solid white;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--fuente);
  font-weight: 600;
  background-color: #2e9aeb;
}

.imagen_boton_menu_principal {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.imagen_boton_filtro {
  /* margin-top: 4px; */
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  background-color: transparent;
}

.imagen_boton_editar {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.imagen_boton_flecha_azul {
  width: 30px;
  height: auto;
  aspect-ratio: 1;
}

.imagen_boton_guardar {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.imagen_boton_guardar_nuevo {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
}

.imagen_boton_editar_categorias {
  width: 20%;
  height: auto;
  aspect-ratio: 1;
}

.boton_cerrar_sesion {
  margin-left: 10%;
  margin-top: 10%;
  width: 80px;
  min-width: 60px;
  max-width: 100px;
  height: 80px;
  min-height: 60px;
  max-height: 100px;
  border: 2px solid white;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--fuente);
  font-weight: 600;
  background-color: #2e9aeb;
  padding: 12px;
}

.texto_blanco_botones_menu_principal {
  width: 172%;
  margin-left: -36%;
  /*text-shadow: 2px 2px 4px #000;*/
  margin-top: 6% !important;
  color: rgb(238, 238, 238);
  text-align: center;
  font-size: 1.2em;
  /*font-size: 0.9em;*/
  font-family: var(--fuente);
  font-weight: 400;
  word-wrap: break-word;
}

.texto_blanco_menu_principal {
  width: 90%;
  /*margin-left: -36%;*/
  margin: auto;
  /* text-shadow: 2px 2px 4px #000; */
  margin-top: 6% !important;
  color: rgb(238, 238, 238);
  text-align: center;
  font-size: 1.2em;
  font-family: var(--fuente);
  font-weight: 400;
  word-wrap: break-word;
}

.tabla_listas_contenido {
}

.tabla_listas_filtro {
  width: 100%;
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);
  border-radius: 12px;
  border-spacing: 0px;
}

.input_text_filtro {
  --outline-color: var(--color-azul-1);

  width: 100%;
  height: 32px;
  margin: 0px;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  outline-color: var(--outline-color);
  border-radius: 8px;
  /* border: 1px solid #ccc; */
  /*box-shadow: 1px 1px 2px #aaa;*/
}

.select_filtro {
  width: 100%;
  height: 32px;
  margin: 0px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /*box-shadow: 1px 1px 2px #aaa;*/
  outline-color: var(--color-azul-1);
}

.div_form_crear {
  text-align: right;
  background-color: transparent;
  padding: 1rem;
}

.link {
  cursor: pointer;
}

.centrar_texto {
  text-align: center;
}

.fondo_trabajo {
  --color-fondo: var(--color-blanco);

  background-color: var(--color-fondo);
  width: 100%;
  margin: auto;
}

.fondo_trabajo_menu {
  --color-fondo: var(--color-blanco);

  background-color: var(--color-fondo);
  width: 100%;
  margin: auto;
}

/* //////////////////////// BARRA SUPERIOR ////////////////////////////////////////*/

.div_barra_superior_old {
  display: flex;
  height: 64px;
  background-color: #0a2d47;
  color: white;
  font-size: 14px;
  font-family: var(--fuente);
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  margin-bottom: 20px;
  position: sticky;
  top: 0px;
  outline: 1px solid white;
  width: 100%;
}

.div_barra_superior {
  display: flex;
  height: 64px;
  background-color: #0a2d47;
  color: white;
  font-size: 14px;
  font-family: var(--fuente);
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  /*margin-bottom: 20px;*/
  position: sticky;
  top: 0px;
  outline: 1px solid white;
  width: 100%;
  z-index: 999999;
}

.logo_boton {
  width: 54px;
  height: 54px;
  max-height: 54px;
  display: inline-block;
}

.logo_empresa {
  width: 100px;
  height: 100px;
  max-height: 100px;
  display: inline-block;
}

.logo_boton_notificaciones {
  width: 32px;
  height: 32px;
  max-height: 48px;
  display: inline-block;
}

.logo_boton_ayuda {
  width: 37px;
  height: 37px;
  max-height: 48px;
  display: inline-block;
}

body {
  margin: 0;
}

.boton_volver {
  margin-left: 8px;
  margin-top: 8px;
  width: 48px;
  height: 48px;
  border: 2px solid white;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--fuente);
  font-weight: 600;
  background-color: #0a2d47;
  display: block;
  padding: 6px;
}

.imagen_boton_volver {
  width: 100%;
  height: 100%;
}

.boton_logo {
  background-color: transparent !important;
  color: white;
  padding: 0px;
  margin: 0px 0;
  margin-left: 24px;
  border: none;
  cursor: pointer;
  width: 54px;
}

.relleno_barra_superior {
  width: 100%;
}

.boton_notificaciones {
  background-color: transparent !important;
  color: white;
  padding: 0px;
  margin: 0px 0;
  margin-left: 24px;
  border: none;
  cursor: pointer;
  width: 48px;
}

.boton_ayuda {
  background-color: transparent !important;
  color: white;
  padding: 0px;
  margin: 0px 0;
  margin-left: 24px;
  border: none;
  cursor: pointer;
  width: 48px;
}

.boton_empresa {
  align-items: center;
  display: flex;
  background-color: transparent !important;
  color: white;
  padding: 0px;
  margin: 0px 0;
  margin-left: 24px;
  border: none;
  cursor: pointer;
  width: 300px;
}

.separador_vertical_barra_superior {
  display: block;
  width: 240px;
  /*width: 0px;*/
}

.titulos_secundarios {
  margin-left: 20px;
  margin-top: 2px;
  font-size: 22px;
  font-family: var(--fuente);
  font-weight: 400;
  /* text-shadow: 1px 1px 1px #e4e4e4 !important; */
  text-align: left;
}

.totales {
  margin-left: 0px;
  margin-top: 15px;
  font-size: 18px;
  font-family: var(--fuente);
  font-weight: 400;
  /* text-shadow: 1px 1px 1px #e4e4e4 !important; */
  text-align: left;
}

.linea_totales {
  display: flex;
  margin-left: 6px;
}

.linea_totales_descripcion {
  width: 200px;
}

.linea_totales_total {
  width: 100px;
  text-align: right;
}

.empresa_barra_superior {
  margin-left: 20px;
  margin-top: 2px;
  font-size: 22px;
  font-family: var(--fuente);
  font-weight: 400;
  /* text-shadow: 1px 1px 1px #e4e4e4 !important; */
  text-align: left;
}

.subempresa_barra_superior {
  font-size: 14px;
  font-family: var(--fuente);
  font-weight: 400;
  text-align: left;
}

.titulo_barra_superior {
  /*margin-top: 10px;*/
  font-size: 35px;
  font-family: var(--fuente);
  font-weight: 400;
  /* text-shadow: 1px 1px 1px #e4e4e4 !important; */
  margin: auto;
  margin-left: 20px;
  font-weight: 600;
}

/* /////Paginador///////*/
/*
#pageStyle{  
	display:inline-block;  
	width:32px;  
	height:32px;  
	border:1px solid #CCC;  
	line-height:32px;  
	text-align:center;  
	color:#999;  
	margin-top:0px;  
	text-decoration:none !important;  
  font-size: 16px;
   font-family:  sans-serif; 
  font-weight: 200;

}  
#pageStyle:hover{  
	background-color:#CCC;  
}  
#pageStyle .active{  
	background-color:#0CF;  
	color:#ffffff;  
}  */

.pageStyle {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  line-height: 32px;
  text-align: center;
  color: black;
  margin-top: 0px;
  text-decoration: none !important;
  font-size: 16px;
  font-family: var(--fuente);
  font-weight: 200;
}

.pageStyle:hover {
  background-color: var(--color-azul-1);
  color: white;
}
.pageStyle .active {
  background-color: var(--color-azul-1);
  color: white;
}

.Paginadores {
  --bg-color: var(--color-blanco);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  gap: 1rem;
  width: 100%;
  /* height: 45px; */
  padding: 1rem;
  border: 0px;
  background-color: var(--bg-color);
  /*box-shadow: 1px 1px 1px #0a2d47;*/

  > div {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  > div:nth-child(2) {
    margin-left: auto;
  }
  > div:last-of-type {
    display: flex;
    justify-content: end;
    align-items: center;
  }
}

#Paginator {
  width: 70px;
  text-align: center;
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
}
.Contador_paginacion {
  /* margin-left: 10px; */
  /* width: 70%; */
  /* margin-top: 10px; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;
}

.Cantidad_paginacion {
  width: 5%;
}

.Pagina_paginacion {
  /* margin-top: 10px;*/
  text-align: right;
  /* margin-right: 10px; */
  /* width: 25%; */
  font-size: 1rem;
  font-family: var(--fuente);
  font-weight: 400;

  padding: 0.5rem;
  color: #1f2937;
  cursor: pointer;
  outline: 0 !important;
  text-decoration: none;
  line-height: 24px;
  white-space: nowrap;
}
.pagina_activa {
  --bg-color: var(--color-azul-1);
  --color: var(--color-blanco);
  background-color: var(--bg-color);
  color: var(--color);
}

.rightarrow {
  display: inline-block;
  font: normal normal normal 14px/1 pages-icon;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.leftarrow {
  display: inline-block;
  font: normal normal normal 14px/1 pages-icon;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*///////////////////  FORMULARIOS  ////////////////////////////////////////*/
.label_formulario {
  display: block;
  font-weight: var(--fuente-seminegrita);
  /* height: 36px; */
}

.data_contenedor {
  --bg-color: var(--color-blanco);

  /* width: 1000px; */
  /* margin: 15px auto; */
  position: relative;
  height: 100%;
  display: table;
  background: var(--bg-color);
  padding: 1rem;
  font-family: var(--fuente);
  border-radius: 20px;

  font-size: 16px;
}

.col-m-1 {
  width: 8%;
  float: left;
  position: relative;
}

.col-m-2 {
  width: 16%;
  float: left;
  position: relative;
}

.col-m-3 {
  width: 25%;
  float: left;
  position: relative;
}

.col-m-4 {
  width: 33%;
  float: left;
  position: relative;
}

.col-m-5 {
  width: 41%;
  float: left;
  position: relative;
}

.col-m-6 {
  width: 50%;
  float: left;
  position: relative;
}

.col-m-7 {
  width: 58%;
  float: left;
  position: relative;
}

.col-m-8 {
  width: 65%;
  float: left;
  position: relative;
}

.col-m-9 {
  width: 75%;
  float: left;
  position: relative;
}

.col-m-10 {
  width: 83%;
  float: left;
  position: relative;
}

.col-m-11 {
  width: 91%;
  float: left;
  position: relative;
}

.col-m-12 {
  width: 100%;
  float: left;
  position: relative;
}
/*//////////////*/
.col-s-1 {
  width: 8%;
  float: left;
  position: relative;
}

.col-s-2 {
  width: 16%;
  float: left;
  position: relative;
}

.col-s-3 {
  width: 25%;
  float: left;
  position: relative;
}

.col-s-4 {
  width: 33%;
  float: left;
  position: relative;
}

.col-s-5 {
  width: 41%;
  float: left;
  position: relative;
}

.col-s-6 {
  width: 50%;
  float: left;
  position: relative;
}

.col-s-7 {
  width: 58%;
  float: left;
  position: relative;
}

.col-s-8 {
  width: 65%;
  float: left;
  position: relative;
}

.col-s-9 {
  width: 75%;
  float: left;
  position: relative;
}

.col-s-10 {
  width: 83%;
  float: left;
  position: relative;
}

.col-s-11 {
  width: 91%;
  float: left;
  position: relative;
}

.col-s-12 {
  width: 100%;
  float: left;
  position: relative;
}
/*/////////////*/

.fila {
  margin: 4px 6px;
  position: relative;
  float: left;
  width: 98%;
}

.campo_de_dato {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  position: relative;
  padding: 0.5rem;
  /* padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 4px; */
  overflow: hidden;
  font-family: var(--fuente);
}

.data_grupo {
  --border-color: var(--color-azul-1);
  --bg-color: var(--color-blanco);

  width: 100%;
  border: 2px solid var(--border-color);
  /* margin: 10px; */
  height: 100%;
  float: left;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 0.5rem;
  /*box-shadow: 2px 1px dodgerblue;*/
}

.input_text_formulario {
  --outline-color: var(--color-azul-1);

  border-width: 1px;
  border-style: solid;
  width: 100%;
  padding: 0.5rem;
  min-height: 3rem;
  border-radius: 8px;
  outline-color: var(--outline-color);

  font-family: var(--fuente);
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.fondo_trabajo_imagen {
  background-image: url(../img/FONDO_FULL.png) !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  min-height: 100svh;
}

.textarea_formulario {
  --outline-color: var(--color-azul-1);

  display: inline-block;
  /* border: 1px solid var(--border-color); */
  border-width: 1px;
  border-style: solid;
  width: 100%;
  padding: 0.5rem;
  /* margin: 4px 0; */
  border-radius: 8px;
  height: auto;
  min-height: 2.5rem;
  max-height: 8rem;
  outline-color: var(--outline-color);
  resize: none;
}
textarea {
  resize: none;
}
/* .Boton_proveedores {
  float: right;
  position: relative;
  top: 64px;
  width: 100%;
  left: 15px;
} */
#div_modificar_comensales_tpv {
  --bg-color: var(--color-blanco);
  background-color: var(--bg-color);

  margin-left: 35%;
  margin-top: 5%;
  width: 30%;
  height: 70%;
  border: 1px;
  border-radius: 20px;
  border: 2px solid var(--color-azul-1);
}

/* #Boton_crear_producto {
  margin-top: 22%;
} */
.center_botones_menu_principal_2 {
  display: flex;
  justify-content: center;
  position: fixed;
  /* bottom: 5%; */
  bottom: 10%;
  width: 100%;
}
@media all and (max-width: 1200px) {
  /*@media only screen and (min-width: 768px) and (max-width: 1200px) {*/
  #Boton_crear_producto {
    margin-top: 0%;
  }
  .imagen_boton_editar {
    width: 50px !important;
    height: 50px !important;
  }
  .tabla_oficina_laboral_listado_completado th,
  td {
    /* font-size: 20px !important; */
  }
  input[type='text'],
  input[type='password'],
  input[type='date'],
  input[type='number'] {
    /* font-size: 20px !important; */
  }
  /*CIERRE CAJA->HISTORICO_APERTURA_CIERRE_CAJA*/
  .Boton_crear_historico {
    /* font-size: 20px !important; */
  }
  /* TABLA HISTORIO APERTURA-CIERRE*/
  .td_lista_formas_de_pago {
    /* font-size: 20px !important; */
  }
  /* BARRA SUPERIOR*/
  #boton_idioma_barra_superior {
    height: 50%;
    width: 75%;
    margin-top: 2.5vh;
  }
  /* INI AMBIENTES TVP IPAD*/
  #boton_ambiente_tpv_redimensionado {
    width: 125px !important;
    font-size: 15px;
  }
  .separador_vertical_barra_superior {
    display: block;
    width: 100%;
    /*width:0%;*/
  }
  /* FIN AMBIENTES TVP IPAD*/
  /*INI VENTANA AÑADIR COMENSALES IPAD*/
  #div_botones_numero_comensales_tpv {
    /* text-align: center !important;
    margin-right: 5% !important; */
    text-align: center;
    margin-right: 5%;
  }
  #div_botones_numero_comensales_tpv button {
    font-size: 25px !important;
  }

  /*#numeros_comensales_input_tpv{
    width: 25% !important;
    text-align: center;
    font-size: 25px !important;
  }*/

  #div_numero_comensales_sumar_restar {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 27px;
    display: flex;
  }
  /* #div_numero_comensales_sumar_restar {
    margin-left: 30px !important;
    margin-right: 30px !important;
    margin-top: 27px !important;
    display: flex !important;
  } */
  #div_numero_comensales_sumar_restar input {
    width: 25% !important;
    text-align: center;
    padding-left: 0% !important;
    font-size: 25px !important;
  }
  #div_modificar_comensales_tpv {
    /*margin-left: 25% ;
    width: 50% ;*/
    margin-left: 0%;
    width: 100%;
    height: 70%;
  }
  #label_numero_comensales {
    width: 15%;
    margin-top: 30px;
    font-size: 25px;
    font-family: var(--fuente);
    font-weight: 200;
    margin-left: 25%;
  }
  /* #label_numero_comensales {
    width: 15% !important;
    margin-top: 30px !important;
    font-size: 25px !important;
    font-family: sans-serif;
    font-weight: 200 !important;
    margin-left: 25% !important;
  } */
  /*FIN VENTANA AÑADIR COMENSALES IPAD*/
  /*INI VENTANA INDEX PHP IPAD*/
  .logo_medusa {
    max-width: 35% !important;
    max-height: 35% !important;
    width: 30% !important;
  }
  #img_logo_index {
    margin-top: 15% !important ;
    margin-bottom: 0px;
    max-height: 300px;
    min-height: 150px;
  }
  #img_logo_pedidos_almacen {
    margin-top: 0% !important ;
    margin-bottom: 0px;
    max-height: 300px;
    min-height: 150px;
  }
  #img_logo_analiticas {
    margin-top: 0% !important ;
    margin-bottom: 0px;
    max-height: 300px;
    min-height: 150px;
  }
  .div_botones_menu_principal {
    width: 100%;
    max-width: 85px !important;
    min-width: 50px;
    height: auto;
    margin-left: 3%;
    margin-right: 3%;
  }
  .div_botones_menu_principal button {
    font-size: 15px;
  }
  .div_botones_menu_principal h2 {
    font-size: 0.64em !important;
  }
  /*FIN VENTANA INDEX PHP IPAD*/
  /*INI VENTANA COCINA TPV IPAD*/
  #boton_produccion_cocina {
    font-size: 15px;
  }
  #h2_metodo_texto_tpv_cocina {
    margin-left: 180px !important;
  }
  #buttons_tvp_cocina button {
    font-size: 15px;
  }
  #Boton_crear_cliente {
    padding-top: 0px !important;
  }
  .fila_2_center_botones_menu_principal {
    font-size: 1.5em;
    bottom: 25% !important;
  }
  .center_botones_menu_principal {
    font-size: 1.5em;
    margin-top: 35% !important;
  }
  .center_botones_menu_principal_2 {
    font-size: 1.5em;
    margin-top: 4% !important;
  }
  /*FIN VENTANA COCINA TPV IPAD*/
  input[type='date']::-webkit-date-and-time-value {
    height: 30px;
  }
  .boton_cerrar_sesion {
    margin-left: 16%;
    margin-top: 16%;
    width: 75px;
    height: 75px;
    /*width:20%;
    height:20%;*/
    min-width: 60px;
    max-width: 100px;

    min-height: 60px;
    max-height: 100px;
    border: 2px solid white;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--fuente);
    font-weight: 600;
    background-color: #2e9aeb;
  }

  .div_botones_menu_principal {
    width: 100%;
    max-width: 78px;
    min-width: 50px;
    height: auto;
    margin-left: 3%;
    margin-right: 3%;
  }
  .texto_blanco_botones_menu_principal {
    width: 150%;
    margin-left: -25%;
    /*font-size: 0.6em;*/
    font-size: 0.9em !important;
    margin-top: 8% !important;
  }

  .data_grupo {
    /*box-shadow: 2px 1px dodgerblue;*/
    /* width: 98%;
    border: 1px solid var(--color-azul-1);
    margin: 10px 1%;
    height: 100%;
    float: left;
    background-color: white;
    border-radius: 12px;
    padding: 12px 0px; */
  }

  .fondo_trabajo {
    /* width:min-content; */
    /* min-height: 2500px; */
  }

  .fondo_trabajo_menu {
    /* min-height: 2500px; */
  }

  .input_text_formulario {
    /* display: inline-block;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 10px;
    margin: 4px 0;
    height: 37px;
    border-radius: 7px;
    outline-color: var(--color-azul-1);
    line-height: 37px;
    font-size: 19px; */
    /* se ha cambiado de 80 a 37 por problema compatibilidad con iphone */
    /* se ha cambiado de 70 a 37 por problema compatibilidad con iphone */
    /*font-size: 38px;*/
  }

  .f_right {
    float: initial;
  }

  .data_contenedor {
    /* width: 100%;
    margin: 0px auto;
    position: relative;
    height: 100%;
    display: table;
    background: white;
    padding: 20px 0px;
    font-family: var(--fuente);
    border-radius: 20px;

    font-size: 25px; */
    /*font-size: 40px;*/
  }

  .col-m-1 {
    width: 100%;
  }

  .col-m-2 {
    width: 100%;
  }

  .col-m-3 {
    width: 100%;
  }

  .col-m-4 {
    width: 100%;
  }

  .col-m-5 {
    width: 100%;
  }

  .col-m-6 {
    width: 100%;
  }

  .col-m-7 {
    width: 100%;
  }

  .col-m-8 {
    width: 100%;
  }

  .col-m-9 {
    width: 100%;
  }

  .col-m-10 {
    width: 100%;
  }

  .col-m-11 {
    width: 100%;
  }

  .col-m-12 {
    width: 100%;
  }
  /*//////////////*/
  .col-s-1 {
    width: 100%;
  }

  .col-s-2 {
    width: 100%;
  }

  .col-s-3 {
    width: 100%;
  }

  .col-s-4 {
    width: 100%;
  }

  .col-s-5 {
    width: 100%;
  }

  .col-s-6 {
    width: 100% !important;
  }

  .col-s-7 {
    width: 100%;
  }

  .col-s-8 {
    width: 100%;
  }

  .col-s-9 {
    width: 100%;
  }

  .col-s-10 {
    width: 100%;
  }

  .col-s-11 {
    width: 100%;
  }

  .col-s-12 {
    width: 100%;
  }

  /* .Boton_proveedores {
    float: initial !important;
    position: initial !important;
    font-size: 40px;
    height: 80px;
    width: 98%;
  } */

  /* .textarea_formulario {
    display: inline-block;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 10px;
    margin: 4px 0;
    border-radius: 7px;
    height: 220px;
    outline-color: var(--color-azul-1);
    font-size: 19px;
    line-height: 38px;
  } */

  .div_barra_superior {
    height: 128px;
    font-size: 32px;
    z-index: 999999;
  }

  .boton_volver {
    width: 100px;
    height: 100px;
    margin-top: 12px;
  }

  .boton_logo {
    margin-left: 18px;
    width: 100px;
    height: 100px;
  }

  .logo_boton {
    width: 85px;
    height: 85px;
    max-height: 85px;
    margin-top: 14px;
  }

  .titulo_barra_superior {
    /*margin-left: 14px;
    margin-top: 24px;*/
    font-size: 60px;
    margin: auto;
    margin-left: 20px;
  }

  .boton_ayuda {
    width: 80px;
  }

  .logo_boton_ayuda {
    width: 60px;
    height: 60px;
    max-height: 60px;
  }

  .boton_notificaciones {
    width: 80px;
  }

  .logo_boton_notificaciones {
    width: 60px;
    height: 60px;
    max-height: 60px;
  }

  .boton_empresa {
    width: 400px;
  }
  .empresa_barra_superior {
    font-size: 48px;
  }

  .subempresa_barra_superior {
    font-size: 28px;
  }
}

/* //////////////////////// PARA MOVILES /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*@media all and (max-width: 400px) and (max-height: 850px) {*/
/*@media only screen and (max-width: 767px){*/
@media only screen and (max-width: 900px) {
  /* INI INDEX */
  .div_botones_menu_principal {
    max-width: 60px !important;
  }
  .fila_2_center_botones_menu_principal {
    font-size: 1em !important;
  }
  .center_botones_menu_principal {
    font-size: 1em !important;
    bottom: 2% !important;
  }
  #img_logo_index {
    width: 60% !important;
    margin-top: 5% !important;
    margin-left: 18% !important;
  }
  /* FIN INDEX */
  /*VENTANA AÑADIR COMENSALES MOVIL*/
  #div_modificar_comensales_tpv {
    margin-left: 0%;
    width: 100%;
    height: 70%;
  }
  #div_numero_comensales_sumar_restar {
    margin-left: 8%;
    margin-right: 30px;
    margin-top: 27px;
    display: flex;
  }
  /* #div_numero_comensales_sumar_restar {
    margin-left: 8% !important;
    margin-right: 30px !important;
    margin-top: 27px !important;
    display: flex !important;
  } */
  #Silla_2 {
    top: 90px !important;
    left: 25px !important;
  }
  #div_botones_numero_comensales_tpv button {
    font-size: 25px !important;
  }
}
/* INI AMBIENTES TVP IPAD*/
#boton_ambiente_tpv_redimensionado {
  width: 150px !important;
  text-transform: uppercase;
  font-size: 15px;
}
/* FIN AMBIENTES TVP IPAD*/

/* ////////////////////////  PARA ELIMINAR ////////////////////////*/
.botones_menu_principal {
  border: 2px solid white;
  border-radius: 20px;
  font-size: 15px;
  font-family: var(--fuente);
  font-weight: 600;
  background-color: #2e9aeb;
}

/* CAMPOS NUEVOS*/
/*RESERVAS*/
#container_tabla_grande {
  max-width: 100%;
  overflow-x: auto;
}
#Tabla {
  /*border-collapse: collapse;*/ /* Puede ser necesario para evitar problemas de diseño */
}
#Tabla th {
  /*position: sticky !important;*/
  top: 0 !important;
}
/* PEDIDOS */
#Tabla_Pedidos {
  /*border-collapse: collapse;*/
}
#Tabla_Pedidos th {
  /*position: sticky !important;*/
  top: 0 !important;
}
/* PRODUCTOS RESTAURANTE */
#Tabla_Productos_restaurantes {
  /*border-collapse: collapse;/*/
}
#Tabla_Productos_restaurantes th {
  /*position: sticky !important;*/
  top: 0 !important;
  position: inherit;
}
/* EMPLEADOS */
#Tabla_Empleados {
  /*border-collapse: collapse;*/
}
#Tabla_Empleados th {
  /*position: sticky !important;*/
  top: 0 !important;
  position: inherit;
}

/*EFECTOS ANIMADOS*/
.efecto_parpadeo {
  animation: parpadeo 2s infinite;
}

@keyframes parpadeo {
  50% {
    opacity: 0.2;
  }
}

button.Boton_crear[disabled] {
  background-color: hsla(0, 0%, 94%, 0.3);
  color: hsla(0, 0%, 6%, 0.3);
}
button.Boton_crear[disabled]:hover {
  cursor: not-allowed;
}

/* SCROLLBAR */

/* Firefox */
@media (width>1200px) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-azul-1) var(--color-blanco);
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--color-azul-1);
    border-radius: 10px;
    border: 5px solid var(--color-blanco);
  }
}

/* .has-scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.has-scrollbar::-webkit-scrollbar-thum  b,
.has-mini-scrollbar::-webkit-scrollbar-thumb {
  background: var(--color-azul-1);
  border-radius: 20px;
}

.has-scrollbar::-webkit-scrollbar-track {
  background-color: var(--color-blanco);
  border: 2px solid var(--color-azul-1);
  border-radius: 20px;
}

.has-scrollbar::-webkit-scrollbar-button,
.has-mini-scrollbar::-webkit-scrollbar-button { */

/* display: none; */
/* }

.has-mini-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.has-mini-scrollbar::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
  background-color: transparent;
  border: transparent;
  border-radius: 20px;
} */

.capitalizar {
  text-transform: capitalize;
}
.boton_disabled {
  filter: grayscale(1);
  cursor: not-allowed;
}

.paginador_2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;

  width: 100%;
}
.paginador_botones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-left: auto;

  button {
    font-weight: 900;
  }
}
.paginador_select {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  width: auto;

  select {
    min-width: 5rem;
  }
}

.contenedor_fecha {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.tabla_pdf {
  th {
    color: #000 !important;
  }
}

/* Tablas Nuevas */

.celda_cifra {
  text-align: right;
}
