/*PARA ELIMINAR LAS FLECHITAS DEL TYPE NUMBER EN EL INPUT*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: "roboto_medium_regular";
  src: url("../webfonts/roboto-medium-webfont.woff2") format("woff2"),
    url("../webfonts/roboto-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "roboto_condensed_light";
  src: url("../webfonts/robotocondensed-light-webfont.woff2") format("woff2"),
    url("../webfonts/robotocondensed-light-webfont.woff") format("woff"),
    url("../webfonts/robotocondensed-light-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "roboto_condensed_regular";
  src: url("../webfonts/robotocondensed-regular-webfont.woff2") format("woff2"),
    url("../webfonts/robotocondensed-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "fira";
  src: url("../webfonts/FiraSans-Regular.woff") format("woff"),
    url("../webfonts/FiraSans-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "museo";
  src: url("../webfonts/Museo300-Regular.woff") format("woff"),
    url("../webfonts/Museo700-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-one: #f5f5f5;
  --color-two: #24292e;
  --color-three: #ec5252;
  /*--color-three: #0366D6;*/

  --form-color: #14111a;

  --accent-color: #253556;
  /*--accent-color: #455A64;*/
  --border-color: #d8d8d8;
}

body,
html {
  font-family: "roboto_condensed_light";
  width: 100vw;
  height: 100vh;
  background-color: var(--color-one);
  color: #333;
  font-size: 14px;
}

.full-box {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

.form-neon {
  border: 1px solid var(--border-color);
  background-color: #fff;
  padding: 15px;
  border-radius: 3px;
}

/*----------  Page headers styles  ----------*/
.page-header {
  padding: 30px 20px 20px 20px;
}
.page-header > :nth-child(1) {
  padding-bottom: 7px;
}
.page-header > :nth-child(2) {
  font-size: 18px;
}

/*----------  Page nav tabs  ----------*/
.page-nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.page-nav-tabs li,
.page-nav-tabs li a {
  height: 40px;
  line-height: 40px;
}
.page-nav-tabs li {
  margin: 5px 20px;
}
.page-nav-tabs li a {
  color: var(--accent-color);
  font-size: 17px;
  min-width: 200px;
  width: auto;
  display: block;
  text-align: center;
  user-select: none;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
}
.page-nav-tabs li a.active {
  color: var(--color-three);
  cursor: none;
  pointer-events: none;
}
.page-nav-tabs li a:hover {
  text-decoration: none;
  color: #333;
  border-bottom: 2px solid #333;
}

/*----------  Edit bootstrap styles  ----------*/
.form-control[readonly] {
  background-color: transparent;
}
.form-control:focus,
.form-control:active {
  outline: none;
  box-shadow: none;
  border: none;
}
.form-control-file:active,
.form-control-file:focus {
  outline: none;
}
.table .btn {
  margin-bottom: 0;
}
.table thead th {
  color: #fff;
}
.table tbody tr {
  color: #333;
  transition: all 0.2s ease-in-out;
}
.table-dark,
.table {
  background-color: #fff;
}
.table-dark {
  border: 1px solid var(--accent-color);
}
.table-dark thead tr {
  background-color: var(--accent-color);
}
.table-dark td,
.table-dark thead th,
.table-dark th {
  border: none;
}
.table-dark tr:hover {
  color: var(--color-three);
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(124, 100, 112, 0.2) 85%,
    transparent
  );
}
.page-link {
  transition: all 0.2s ease-in-out;
}
.page-link:hover,
.page-link.active {
  background-color: var(--color-three);
  color: #fff;
}
table form {
  margin-bottom: 0;
}
/*----------  Text Styles  ----------*/
.roboto-medium {
  font-family: "roboto_medium_regular";
}
.roboto-condensed-light {
  font-family: "roboto_condensed_light";
}
.roboto-condensed-regular {
  font-family: "roboto_condensed_regular";
}
.museo {
  font-family: "museo";
}
.fira {
  font-family: "fira";
}
/*----------  Page 404 styles  ----------*/
.container-404 {
  background: #000428;
  background: linear-gradient(to right, #004e92, #000428);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*----------  login Styles  ----------*/
.login-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0575e6;
  background: -webkit-linear-gradient(to right, #021b79, #0575e6);
  background: linear-gradient(to right, #e0bbbb, #7790a8);
}
.login-content {
  width: 95%;
  max-width: 330px;
  height: auto;
  border: 1px solid var(--border-color);
  background-color: #fff;
  border-radius: 4px;
  padding: 15px;
  color: var(--accent-color);
}
.btn-login {
  width: 90%;
  padding: 10px 0;
  display: block;
  margin: 0 auto;
  border-radius: 3px;
  margin-top: 30px;
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  transition: all 0.2s ease-out;
}
.btn-login:hover {
  background-color: var(--color-three);
  border: 1px solid var(--color-three);
  text-decoration: none;
  color: #fff;
}
.btn-login:active,
.btn-login:focus {
  outline: none;
}

/*----------  Page layout Styles  ----------*/
.main-container {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*overflow: hidden; /* 🚨 Bloquea scroll interno */
  overflow-y: auto; /* ✅ habilita scroll */
  -webkit-overflow-scrolling: touch; /* suavidad en móviles */
}
.page-content,
.nav-lateral {
  height: 100%;
  /*overflow: hidden; /* 🚨 Bloquea scroll interno */
  overflow-y: auto; /* ✅ en lugar de hidden */
  -webkit-overflow-scrolling: touch;
}
.page-content {
  position: relative;
  padding-left: 300px;
  transition: all 0.2s ease-in-out;
  padding-bottom: 20px;
}

/*---------- Scroll fino solo en .page-content ----------*/
.page-content::-webkit-scrollbar {
  width: 4px; /* ancho más fino */
}

.page-content::-webkit-scrollbar-track {
  background: #f1f1f1; /* color del track */
}

.page-content::-webkit-scrollbar-thumb {
  background: #888; /* color de la barra */
  border-radius: 10px; /* esquinas redondeadas */
}

.page-content::-webkit-scrollbar-thumb:hover {
  background: #555; /* color al pasar el mouse */
}
/* Firefox */
.page-content {
  scrollbar-width: thin; /* ancho fino */
  scrollbar-color: #888 #f1f1f1; /* thumb | track */
}

/*  Nav Lateral */
.nav-lateral {
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  background-image: url("../assets/img/nav-font.jpg");
  background-position: center center;
  background-size: cover;
}
.nav-lateral-bg {
  display: none;
}
.nav-lateral-content {
  max-width: 300px;
  height: 100%;
  background-color: rgba(36, 41, 46, 0.8);
}
.nav-lateral-bar {
  height: 3px;
  background-color: var(--color-three);
}
.nav-lateral-avatar {
  padding: 20px 0;
}
.nav-lateral-avatar i {
  display: none;
}
.nav-lateral-avatar img {
  width: 80%;
  margin: 0 auto;
  display: block;
  /*-webkit-filter: invert(100%);
    filter: invert(100%);
	/*border: 4px solid #FFF;
	border-radius: 100%;*/
}
.nav-lateral-avatar figcaption {
  margin-top: 5px;
  color: #fff;
}
.nav-lateral-menu {
  height: auto;
}
.nav-lateral-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-lateral-menu ul li {
  width: 100%;
  height: auto;
}
.nav-lateral-menu ul li a {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  box-sizing: border-box;
  padding-left: 20px;
  transition: all 0.2s ease-in-out;
}
.nav-lateral-menu ul li a.active {
  color: #fff;
  background-color: var(--color-three);
}
.nav-lateral-menu ul li a:hover {
  color: #fff;
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
}
.nav-lateral-menu ul li ul {
  display: none;
  border: 1px solid var(--color-three);
  background: rgba(20, 30, 48, 0.5);
}
.nav-lateral-menu ul li ul a {
  padding-left: 45px;
}
.show-nav-lateral-submenu {
  display: block !important;
}
.nav-lateral-menu .fa-chevron-down,
.nav-lateral-menu .fa-chevron-up {
  float: right;
  height: 45px;
  line-height: 45px;
  margin-right: 7px;
  transition: all 0.2s ease-in-out;
}

/*  Page content */
.navbar-info {
  height: 50px;
  border-bottom: 1px solid var(--border-color);
  text-align: right;
  padding-right: 10px;
}

.navbar-info a {
  color: var(--accent-color);
  height: 50px;
  min-width: 40px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  transition: all 0.2s ease-out;
  user-select: none;
}
.navbar-info a:hover {
  color: var(--color-three);
  background-image: radial-gradient(
    circle,
    rgba(250, 30, 78, 0.1),
    transparent 80%
  );
}
.navbar-info a:active,
.navbar-info a:focus {
  outline: none;
}

/*----------  Home Styles  ----------*/
.tile-container {
  text-align: center;
  padding: 20px 25px;
}
.tile {
  height: 200px;
  width: 200px;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  color: var(--accent-color);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  user-select: none;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}
.tile:hover {
  text-decoration: none;
  border-color: var(--color-three);
}
.tile:focus,
.tile:active {
  outline: none;
}
.tile-tittle {
  margin: 0;
  width: 100%;
  padding: 0;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease-in-out;
  font-family: "roboto_medium_regular";
}
.tile:hover .tile-tittle {
  color: #fff;
  border-color: var(--color-three);
  background-color: var(--color-three);
}
.tile-icon {
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  padding-top: 22px;
}
.tile-icon > i {
  font-size: 80px;
}
.tile-icon > p {
  font-family: "roboto_medium_regular";
  height: 35px;
  line-height: 35px;
}
.tile:hover .tile-icon > i,
.tile:hover .tile-icon > p {
  color: var(--color-three);
}

/*----------  Breakpoints  ----------*/
@media (max-width: 767px) {
  .nav-lateral {
    width: 100%;
    overflow: hidden;
    display: none;
    background-image: none;
  }
  .nav-lateral.active {
    display: block;
    z-index: 9999;
  }
  .nav-lateral-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 3, 0.4);
    position: relative;
    display: block;
    z-index: 2;
  }
  .nav-lateral-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    transform: translateX(-400px);
    transition: all 0.3s ease-in-out;
    background-color: var(--color-two);
  }
  .nav-lateral.active .nav-lateral-content {
    transform: translateX(0);
  }
  .nav-lateral-avatar i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    position: absolute;
    top: 5px;
    right: 0;
    text-align: center;
    display: block;
    transition: all 0.2s ease-out;
  }
  .nav-lateral-avatar i:hover {
    color: var(--color-three);
  }
  .page-content {
    padding-left: 0;
  }
}

/*  Bootstrap breakpoints */
@media (min-width: 576px) {
}

@media (min-width: 768px) {
  .nav-lateral.active {
    transform: translateX(-400px);
  }
  .page-content.active {
    padding-left: 0;
  }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

/*----------  Keyframes  ----------*/

/*---------- TBL MPF-EDIT ---------*/

.tbl-info {
  text-align: center;
}
.tbl-info table {
  text-align: center;
  margin: 0 auto;
  width: 95%;
}
.tbl-info table tr td {
  /*width: 50%;*/
  vertical-align: top;
}
.tbl-info input {
  text-align: left;
}
.tbl-info div {
  margin-bottom: 0;
}

/*----------  Footer  ----------*/

.footer {
  color: #fff;
  font-size: 12px;
  min-width: 200px;
  width: auto;
  display: block;
  text-align: center;
  padding-top: 10px;
}

.footer p {
  margin-bottom: 0px;
}
/*----------  modal de movimientos  ----------*/
.mov-modal {
  width: 120em;
}
/*----------  modal de movimientos  ----------*/

/*----------  panel group ----------*/
.rcb {
  margin-bottom: 0px;
}
.rcb-titulo {
  min-width: 200px;
  text-align: left;
  padding: 10px;
  background-color: rgb(247, 247, 247);
}
.rcb-container {
  padding-bottom: 3px;
}
.rcb-titulo a {
  vertical-align: middle;
  color: #000;
}

/*----------  Credencial styles  ----------*/
.container-cred {
  background: #000428;
  background: linear-gradient(to right, #008399, #01687a);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*============SUGERENCIA BUSQUEDAS============*/

.sug_Box_side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);

  /* Fondo semitransparente */
  color: white;
  padding: 5px;
  z-index: 9999;
  /* Z-index alto para estar por encima de los demás elementos */
}

.sug_Box_side li {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 5px;
}

.sug_Box_side li {
  color: black;
}

.sug_Box_down {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);

  /* Fondo semitransparente */
  color: white;
  padding: 5px;
  z-index: 9999;
  /* Z-index alto para estar por encima de los demás elementos */
}

.sug_Box_down li {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 5px;
}

.sug_Box_down li {
  color: black;
}

/*.sug_Box{
	position: relative;
	background-color: #FFF;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border: 2px solid #000;
	color: #000;
	cursor: pointer;
}
.sug_Box li:hover{
	background-color: #8095FA;
}

.sug_Box{
	margin: 0px;
	padding: 0px;
}

.sug_Box li{
	margin: 0px 0px 3px 0px;
	padding: 3px;
	cursor: pointer;
}*/

/* Toast NOTIFICACION ALERTA*/
/*.contenedor-toast {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.toast {
  background: #ccc;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
  animation-name: apertura;
  animation-duration: 200ms;
  animation-timing-function: ease-out;
  position: relative;
}

.toast.exito {
  background: var(--exito);
}

.toast.error {
  background: var(--error);
}

.toast.info {
  background: var(--info);
}

.toast.warning {
  background: var(--warning);
}

.toast .contenido {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

.toast .icono {
  color: rgba(0, 0, 0, 0.4);
}

.toast .titulo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.toast .btn-cerrar {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  padding: 0px 5px;
  transition: 0.3s ease all;
}

.toast .btn-cerrar:hover {
  background: rgba(0, 0, 0, 0.3);
}

.toast .btn-cerrar .icono {
  width: 20px;
  height: 20px;
  color: #fff;
}

@keyframes apertura {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast.cerrando {
  animation-name: cierre;
  animation-duration: 200ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes cierre {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(100% + 40px));
  }
}

.toast.autoCierre::after {
  content: "";
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  animation-name: autoCierre;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes autoCierre {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}*/

.row label {
  font-weight: bolder;
}
