* {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  box-sizing: border-box;
}

/*============        Body     ============*/
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.1em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 3em;
  min-height: 100vh;
}
@media screen and (max-width: 600px) {
  body {
    height: 110vh;
    padding: 0;
    line-height: 0;
  }
}

/*============        Footer     ============*/
footer {
  position: absolute;
  background-color: rgb(199, 212, 226);
  text-align: center;
  bottom: 0;
  width: 100%;
  padding: 1em;
}

/*============        Header     ============*/
header img {
  max-width: 250px;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url(../img/menu.svg);
}

.color_menu {
  background-color: rgb(240, 240, 240);
}

/*============        Menu     ============*/
.contenedor_menu .navbar-toggler-icon {
  background-image: url(../img/menu.svg);
}

.nav-item {
  text-align: center;
  font-size: 1.25rem;
}
.nav-item:hover {
  background-color: rgb(58, 141, 222);
  border-radius: 10px;
  transform: scale(1.05);
  transition: transform 0.2s;
  border-bottom: 2px solid rgb(16, 24, 31);
}

.nav-link {
  height: 100%;
  color: black;
}
.nav-link:hover {
  color: white;
  text-decoration: underline;
  transition: transform 0.2s;
}

.dropdown {
  margin: 0 20px;
}
.dropdown .dropdown-menu {
  display: block;
  margin-top: 0.02em;
}
.dropdown:hover {
  background-color: rgb(58, 141, 222);
  border-radius: 8px;
  transition: transform 0.2s;
}

.navbar-nav {
  align-items: center;
}

#btn_salir {
  background-color: #B00020;
  color: white;
  border-radius: 10px;
  width: 100%;
  margin: auto;
}
#btn_salir:hover {
  background-color: #DE8B3A;
  transition: transform 0.1s;
  color: black;
}

#text_name {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  font-size: 1.25rem;
  align-items: center;
  padding: 0% 15px;
}
@media screen and (max-width: 600px) {
  #text_name {
    width: 100%;
    text-align: center;
  }
  #text_name br {
    display: none;
  }
  #text_name {
    margin: 15px 0px;
  }
}
#text_name p {
  color: black;
  margin: auto;
  font-weight: bold;
  text-decoration: underline;
}

/*============        Titulos     ============*/
.titulo-principal {
  font-size: 3rem;
  color: rgb(58, 141, 222);
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .titulo-principal {
    padding-bottom: 5px;
  }
}

.titulo-error {
  font-size: 3rem;
  color: #B00020;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  padding-bottom: 30px;
}

/*============        Botones     ============*/
.btn {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  background-color: #3a8dde;
  border-color: #3a8dde;
  cursor: pointer;
  margin: 0px 15px;
  padding: 10px 25px;
  width: auto;
  margin: auto;
}
.btn:hover {
  background-color: #12a14b;
  border-color: #10181F;
  color: white;
}
@media screen and (max-width: 600px) {
  .btn {
    width: 100%;
    margin: 0 1%;
  }
}

.btn_svg {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  border: none;
  color: #3a8dde;
  background: transparent;
  transition: 0.2s;
}
.btn_svg:hover, .btn_svg:focus {
  color: white;
  background: #3a8dde;
  border-color: #3a8dde;
}
.btn_svg .svg-icon {
  position: relative;
  flex-shrink: 0;
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  transition: fill 0.3s;
}

.icon_home {
  height: 3rem;
  width: 3rem;
}

.barra_botones {
  padding: 10px 0px;
  text-align: center;
}

.btn-registro {
  margin-left: 3%;
}
@media screen and (max-width: 600px) {
  .btn-registro {
    margin-top: 10px;
  }
}

/*============        Mensajes     ============*/
.msg {
  margin: 0px 1rem;
  padding: 1rem;
  display: flex;
  border-radius: 15px;
  align-items: center;
  justify-content: space-between;
  animation: hithere 1s forwards;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
}

@keyframes hithere {
  30% {
    transform: scale(1.05);
  }
  40%, 60% {
    transform: rotate(-3deg) scale(1.05);
  }
  50% {
    transform: rotate(3deg) scale(1.05);
  }
  70% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.msg_error {
  background-color: rgba(255, 0, 0, 0.4);
  color: darkred;
  font-weight: bold;
}
.msg_error button {
  color: darkred;
}

.msg_alerta {
  background-color: rgba(255, 234, 0, 0.4);
  color: rgb(190, 136, 0);
  font-weight: bold;
}
.msg_alerta button {
  color: rgb(190, 136, 0);
}

.msg_exito {
  background-color: rgba(0, 255, 68, 0.4);
  color: darkgreen;
  font-weight: bold;
  animation: none;
}
.msg_exito button {
  color: darkgreen;
}

.close-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 0;
  margin-left: 10px;
}

#img--noautorizado {
  max-width: 50%;
  height: 70vh;
  display: block;
  margin: auto;
}
@media screen and (max-width: 600px) {
  #img--noautorizado {
    max-width: 90%;
  }
}

/*============        Login     ============*/
.contenedor-login {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -40%);
  background: rgb(199, 212, 226);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.contenedor-login h2 {
  margin: 0 0 30px;
  color: black;
  text-align: center;
  font-size: 2em;
}
@media screen and (max-width: 600px) {
  .contenedor-login {
    width: 95%;
    transform: translate(-50%, 0);
    top: 20%;
  }
  .contenedor-login .form-group {
    font-size: 2rem;
  }
  .contenedor-login .form-group input {
    font-size: 1.5rem;
  }
  .contenedor-login .form-group label {
    min-height: 20px;
    font-size: 1.5rem;
  }
}
.contenedor-login .msg_error {
  width: 95%;
  margin: auto;
}

.btn-login {
  display: block;
  width: 50%;
  min-width: 150px;
  margin: 20px auto;
}

.form-group {
  margin: 0 0 10px 0;
  position: relative;
  float: left;
  width: 100%;
}
.form-group label {
  display: block;
  font-size: 1.3rem;
  width: 100%;
  min-height: 40px;
  box-sizing: border-box;
  font-weight: bold;
}
.form-group input {
  display: block;
  font-size: 1.3rem;
  width: 100%;
  padding: 0px 10px;
  min-height: 40px;
  margin: 0px 0px 15px 0px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}

.form-group-contrasenia {
  width: 100%;
  display: inline-block;
  padding: 10px 4px;
  font-size: 1.4rem;
}
.form-group-contrasenia label {
  margin-left: 10px;
}

/*============        Tablas     ============*/
.tabla_inicio {
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: 0px 7px 6px -6px rgba(0, 0, 0, 0.28);
  margin-bottom: 40px;
  margin-top: 0.5em;
  width: 100%;
  max-width: 100%;
}
.tabla_inicio th, .tabla_inicio td {
  border: 1px dotted #bfbfbf;
  padding: 5px 7px;
  position: relative;
  vertical-align: middle;
  text-align: center;
}
.tabla_inicio thead tr {
  border-bottom: 3px solid #0085a6;
  color: #000;
}
.tabla_inicio thead th {
  background-color: #fff;
  color: #000;
  font-size: 0.83333em;
  line-height: 1.8;
  padding: 10px 8px 8px 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.tabla_inicio tbody tr {
  background-color: #fff;
}
.tabla_inicio tbody tr:hover {
  background-color: #eee;
  color: #000;
}
.tabla_inicio tfoot tr {
  border-top: 3px solid #0085a6;
}
@media screen and (max-width: 600px) {
  .tabla_inicio {
    box-shadow: none;
  }
  .tabla_inicio thead tr, .tabla_inicio tfoot tr {
    display: none;
  }
  .tabla_inicio tbody tr {
    box-shadow: 0px 7px 6px -6px rgba(0, 0, 0, 0.28);
    margin-bottom: 20px;
  }
  .tabla_inicio tbody tr:last-child {
    margin-bottom: 0;
  }
  .tabla_inicio tr {
    display: block;
  }
  .tabla_inicio td {
    display: block;
    background-color: #fff;
    border-top: none;
    position: relative;
    padding: 0% 5%;
    text-align: center;
  }
  .tabla_inicio td:hover {
    background-color: #eee;
    color: #000;
  }
  .tabla_inicio td:first-child {
    border-top: 1px solid #bfbfbf;
    border-bottom: 3px solid #0085a6;
    border-radius: 4px 4px 0 0;
    color: #000;
    font-size: 1.11111em;
    font-weight: bold;
  }
  .tabla_inicio td::before {
    display: inline-block;
    color: hsl(0, 0%, 60%);
    font-size: 14px;
    font-weight: normal;
    margin-left: -100%;
    text-transform: uppercase;
    width: 100%;
    white-space: nowrap;
  }
  .tabla_inicio .btn_cell {
    width: 100% !important;
    text-align: center;
    margin: auto;
  }
}
.tabla_inicio .btn_cell {
  width: 15%;
  text-align: center;
  margin: auto;
}

.tabla_tarjeta {
  width: 100%;
  max-width: 100%;
}
.tabla_tarjeta th, .tabla_tarjeta td {
  border-bottom: 1px inset #bfbfbf;
  padding: 5px 10px;
  position: relative;
  vertical-align: middle;
  text-align: center;
}
.tabla_tarjeta thead tr {
  border-bottom: 3px solid rgb(169, 168, 169);
  color: #000;
}
.tabla_tarjeta thead th {
  color: #000;
  line-height: 1.8;
  padding: 15px 14px 13px 14px;
  position: relative;
  text-align: center;
  font-size: 1.2rem;
}
.tabla_tarjeta tbody th {
  text-align: left;
}
.tabla_tarjeta tbody tr {
  height: 3rem;
  min-height: 50px;
}

/*============        Consultar     ============*/
.seccion-consultar {
  /*background-color:red;*/
  margin: auto;
  padding: 0 0 10px 0;
  text-align: center;
}
.seccion-consultar label {
  font-weight: bold;
  font-size: 1.5rem;
}
.seccion-consultar input:not([type=submit]) {
  width: 360px;
  background: #fff;
  color: #a3a3a3;
  box-shadow: 1px 6px 10px 1px rgba(0, 0, 0, 0.2);
  border: 0.1;
  outline: 0;
  padding: 22px 18px;
  display: block;
  margin: 20px auto;
  text-align: center;
}
.seccion-consultar input:not([type=submit]):focus {
  box-shadow: 1px 5px 4px 1px rgba(34, 121, 243, 0.954);
}

.validacion {
  font-size: 3rem;
  border-radius: 15px;
  font-weight: 520;
  margin-top: 10%;
}
@media screen and (max-width: 600px) {
  .validacion {
    height: 20vh;
  }
}

.perm_aprobado {
  background-color: rgb(81, 175, 0);
  color: rgb(255, 255, 255);
}

.perm_verificar {
  background-color: rgb(254, 212, 3);
  color: rgb(28, 28, 28);
}

.perm_denegado {
  background-color: rgb(174, 51, 54);
  color: rgb(255, 255, 255);
}

.titulo_muestra {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 520;
  width: 100%;
}

.card_p {
  margin: auto;
  display: grid;
  place-items: center;
  width: 60%;
  min-width: 300px;
  height: auto;
  border-radius: 20px;
  background: #f5f5f5;
  padding: 1.5rem;
  border: 2px solid #c3c6ce;
  overflow: visible;
}
@media screen and (max-width: 600px) {
  .card_p {
    width: 98%;
  }
}

/*============        Formularios     ============*/
.contenedor_formulario {
  border-radius: 10px;
  width: 60%;
  height: auto;
  margin: auto;
  border: 1px solid rgba(58, 140, 222, 0.466);
  padding-bottom: 5%;
}
.contenedor_formulario .titulo_formulario {
  border-radius: 10px 10px 0 0;
  background-color: rgba(58, 140, 222, 0.466);
  border: 1px solid rgba(58, 140, 222, 0.466);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 520;
}
.contenedor_formulario label {
  margin: 1% 0 0 8%;
  font-size: 1.3rem;
  text-align: center;
}
.contenedor_formulario .grupo_dato {
  margin: 0% 10%;
}
.contenedor_formulario .grupo_etiqueta {
  vertical-align: middle;
}
.contenedor_formulario .grupo_etiqueta input, .contenedor_formulario .grupo_etiqueta select {
  width: 90%;
  height: 3vh;
  min-height: 30px;
  font-size: 1.2rem;
  background-color: white;
}
.contenedor_formulario .grupo_etiqueta span {
  width: 6%;
  height: 3vh;
  vertical-align: sub;
  text-align: center;
  margin-left: 1%;
  background-color: transparent;
}
@media screen and (max-width: 600px) {
  .contenedor_formulario {
    width: 98%;
  }
  .contenedor_formulario input, .contenedor_formulario select {
    width: 85% !important;
  }
  .contenedor_formulario span {
    margin-right: 5px;
  }
}

/*============        Filtros     ============*/
.contenedor_filtros {
  width: 95%;
}

.form-filtro {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.form-exportar {
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
  align-items: center;
}

.grupo_filtro {
  display: flex;
  margin: 2px 5px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.grupo_filtro input, .grupo_filtro select, .grupo_filtro option {
  margin-left: 10px;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 0px 10px;
}
.grupo_filtro input:focus, .grupo_filtro select:focus, .grupo_filtro option:focus {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 139, 0.5);
  transform: scale(1.05);
}
.grupo_filtro select, .grupo_filtro option {
  margin-right: 20px;
}
.grupo_filtro label {
  vertical-align: middle;
}

/*============        Inventario     ============*/
.contenedor_tabla {
  box-shadow: #000 1px 1px 5px;
  width: 95%;
  margin: auto;
}/*# sourceMappingURL=estilo.css.map */