/*@mixin centrar(){

}*/
* {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  font-size: 1em;
}

/*============        Body     ============*/
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.2em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 3em;
  min-height: 100vh;
}

/*============        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 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;
}

/*============        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-registro:hover {
  background-color: #C5CAE9;
  border-color: #10181F;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.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;
}

.btn_accion:hover, .btn_accion:focus {
  background: #12a14b;
}

.btn_historial:hover, .btn_historial:focus {
  background: #3a8dde;
  border-color: #3a8dde;
}

.btn_salir:hover, .btn_salir:focus {
  background: #DE3A3B;
  border-color: #3a8dde;
}

.link_btn {
  text-decoration: none;
  margin: 0px 1%;
}

.btn_forumlario {
  display: block;
  margin: 3% auto;
}

.btn_consultar {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 38px;
  width: 240px;
}
.btn_consultar:hover {
  background-color: #C5CAE9;
  border-color: #10181F;
  color: rgb(0, 0, 0);
}

.barra_botones {
  padding: 10px 0px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .barra_botones {
    display: none;
  }
}

.btn_home {
  color: black;
}

.btn_home:hover {
  border-radius: 15px;
  background-color: #DEDD3A;
  transform: scale(1.1);
}

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

.msg {
  margin: 0px 1rem;
  padding: 1rem;
  display: flex;
  border-radius: 15px;
  align-items: center;
  justify-content: space-between;
  animation: hithere 1s forwards;
}

@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;
}

@media screen and (max-width: 480px) {
  .msg {
    margin: 5px;
    padding: 1rem;
  }
}
/*============        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 .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;
}

/*============        Formularios     ============*/
.contenedor_formulario {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-radius: 10px;
  background-color: rgb(240, 240, 240);
  border: 1px solid rgba(58, 140, 222, 0.466);
  box-shadow: 0 4px 8px 0 rgba(0, 174, 239, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding: 30px 0;
}
.contenedor_formulario form {
  width: 80%;
  height: auto;
}
.contenedor_formulario .form-control {
  margin: auto;
}
.contenedor_formulario .grupo_botones {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  margin: auto;
  margin: 2% 0%;
}
.contenedor_formulario fieldset {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: rgba(58, 141, 222, 0.85);
  opacity: 0.9;
  border-radius: 15px;
  padding: 1% 5%;
  margin: 2% 0%;
}
.contenedor_formulario fieldset input, .contenedor_formulario fieldset select {
  width: 90%;
  font-size: 1.1rem;
  background-color: white;
  border-radius: 5px;
  text-align: center;
}
.contenedor_formulario fieldset input:focus, .contenedor_formulario fieldset select:focus {
  border: 3px solid rgb(58, 141, 222);
  box-shadow: 0 3px 5px darkblue;
  transform: scale(1.05);
}
.contenedor_formulario fieldset label {
  margin: 1% 0 0 1%;
  margin: auto;
  font-size: 1.3rem;
  text-align: center;
}
.contenedor_formulario fieldset legend {
  float: none;
  font-size: 1.5rem;
  background-color: rgb(45, 42, 43);
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
}
.contenedor_formulario span {
  width: auto;
  height: auto;
  text-align: center;
  margin-left: 10px;
  background-color: transparent;
  font-size: 1.1rem;
  margin: 10px 15px;
}
.contenedor_formulario .grupo_dato {
  flex: 40%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .contenedor_formulario {
    width: 98%;
    padding: 0%;
    margin: 0 auto;
  }
  .contenedor_formulario fieldset {
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    width: 100%;
  }
  .contenedor_formulario form {
    width: 95%;
  }
  .contenedor_formulario .grupo_dato {
    display: block;
    width: 100%;
  }
}
.contenedor_formulario #btn_cancelar {
  margin: 0 !important;
}

/*============        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: 10px 14px;
  position: relative;
  vertical-align: middle;
  text-align: center;
}
.tabla_inicio thead tr {
  border-bottom: 3px solid #859397;
  color: #000;
}
.tabla_inicio thead th {
  background-color: rgb(240, 240, 240);
  color: #000;
  font-size: 0.85rem;
  line-height: 1.8;
  padding: 0 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.tabla_inicio tbody tr {
  background-color: #fff;
  font-size: 0.85rem;
}
.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;
}

/*============        Reporte     ============*/
.contenedor_tabla {
  box-shadow: #000 1px 1px 5px;
  width: 95%;
  margin: auto;
}

.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;
}

.PuestoReponsable,
.EmailReserva,
.Tolerancia,
.HoraLlegada,
.Comentarios {
  display: none;
}

.header--print {
  display: none;
}

.logo--print {
  display: inline-block;
  width: 20%;
  height: auto;
  vertical-align: top;
}

.titulo--print {
  display: inline-block;
  width: 60%;
  text-align: center;
  margin-left: 8%;
  text-transform: capitalize;
}

.titulo-reporte {
  background-color: rgb(255, 237, 240);
  text-decoration: underline;
}

.fecha-reporte {
  color: red;
}

@media print {
  header, footer, form, .titulo-principal, .td--detalle {
    display: none !important;
  }
  .header--print {
    display: block;
  }
  .footer--print {
    display: block;
  }
  .tbh-th-act--report, .td--detalle {
    display: none;
  }
  .td--report {
    white-space: nowrap;
  }
}
.calendario-titulo {
  text-align: center;
  padding: 1% 0;
}

.calendario {
  width: 85%;
  margin: auto;
  border: solid gray;
  padding: 3% 1%;
  color: black;
}

.color-estado-nueva {
  background-color: rgb(15, 113, 193);
  color: black;
}

.color-estado-completada {
  background-color: rgb(132, 151, 176);
  color: black;
}

.color-estado-verificar {
  background-color: rgb(255, 255, 102);
  color: black;
}

.color-estado-cancelado {
  background-color: rgb(255, 113, 19);
  color: black;
}

.color-estado-asignada {
  background-color: rgb(132, 255, 0);
  color: black;
}/*# sourceMappingURL=estilo.css.map */