body {font-family: "Google Sans Flex", sans-serif;}

/* Login area */
.back_login_1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
.bg_form_login {
  background: #f4f6f7;
}

.logo_login {
  height: 120px;
}
.text_login_1 {
  font-size: 12px;
}
.link_login_1 {
  font-size: 12px;
  color:#212529;
  text-decoration: none;
}
.input_log {
  border-radius: 25px;
  border-color: #92B222;
}
.input_lo_pass, .input_lo_pass:autofill {
  border-radius: 25px;
  border-color: #d8dad9;
  background: #d8dad9;
  font-size: 12px;
  padding-left: 15px;
  box-shadow: none;
}
.input_lo_pass:focus {
  border-color: #d8dad9;
  box-shadow: none;
}
.btn_login {
  border-radius: 25px;
  background: linear-gradient(to right, #b1d13f, #8caa21);
  color: #fff;
  font-weight: 700;
}
.btn_login:hover {color: #fff;}
.login_foot {
  color: #aaa;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
}
.text_login_2 {
  font-weight: 300;
  color: #fff;
  font-size: 20px;
}
.text_login_3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}
.text_login_4 {
  font-size: 11px;
}
.color_w {color: #fff;}
.color_1 {color: #92B222;}
.color_2 {color: #2C3E50;}
.line_login div {
  margin-top: 5px;
  width: 100px;
  border: 2px solid #92B222;;
}

@media screen and (min-width: 768px) {
  .p_login_form {padding: 0px;}
  .form_login_area {
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
  .titulos_login {
      display: flex;
      height: 100%;
      align-items: end;
  }
}
@media screen and (max-width: 767px) {
  .p_login_form {
    position: absolute;
    bottom: 55px;
  }
  .bg_form_login {border-radius: 5px;}
  .text_login_2, .text_login_3 {text-align: center;}
  .line_login {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .titulos_login {zoom: 74%}
}
@media screen and (min-width: 992px ) and (max-width: 1199px) {
  .zoom_form_login {zoom: 88%;}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .zoom_form_login {zoom: 80%;}
}
@media screen and (max-width: 400px) {
  .zoom_form_login {zoom: 82%;}
}

/*menu*/
.menu_area {
  background: #2C3E50;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding: 15px 10px;
  transition: all .5s;
  position: sticky;
  top: 0px;
}
.items_menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.menu_togle a {
  text-decoration: none;
}
.flex_barmenu {
  color: #fff;
  white-space: nowrap;
}
.flex_barmenu:hover {color: #fff;}
.btn_nav_option {
  color: #929ca5;
  border-radius: 25px;
  text-align: start;
}
.btn_nav_option.show, .btn_nav_option:hover {
  border: 1px solid #92B222;
  color: #fff;
}
.btn_nav_option.show i,
.btn_nav_option:hover i {
  color: #92B222;
}
.foot_menu {
  color: #929ca5;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
}
.menu_area .flex_barmenu img {
  height: 28px;
  display: none;
}
.menu_area .foot_menu_text {white-space: nowrap;}
.menu_area .btn_nav_option span {display: none;}
.menu_area .foot_menu div.foot_menu_text {display: none;}

.menu_area.active .flex_barmenu img {display: inline;}
.menu_area.active .btn_nav_option span {display: inline;}
.menu_area.active .foot_menu div.foot_menu_text {display: block;}
.menu_area.active {padding: 15px 25px;}

/* responsive menu */
@media screen and (max-width: 584px) {
  .menu_area {
    position: fixed;
    left: -220px;
    z-index: 1;
  }
  .menu_area.active {
    left: 0px;
  }
}

/* Header */
.menu_top {
  position: sticky;
  top: 0px;
  background: #fff;
  z-index: 2;
}
.nav_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.title_header {
  font-size: 18px;
  color: #2C3E50;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.select_header {
  width: 300px;
  border-radius: 25px;
  font-size: 13px;
}
@media screen and (min-width: 810px) and (max-width: 991px) {
  .select_header {width: 230px;}
}
@media screen and (min-width: 585px) and (max-width: 809px) {
  .title_header {display: block;}
  .select_header {width: 180px;}
}
.acces_header {
  display: flex;
  gap: 5px;
}
.btn_header_1, .btn_header_2 {
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  min-width: 160px;
}
.btn_header_1 {
  background: linear-gradient(to right, #b1d13f, #8caa21);
  color: #fff;
}
.btn_header_2 img {
  height: 18px;
  border-radius: 50%;
}
.btn_header_1:hover {color: #fff;}
.btn_header_2, .btn_header_2.show, .btn_header_2:hover {
  background: #e6e6e6;
  color: #2C3E50;
}

/* responsive header */
@media screen and (max-width: 584px) {
  .mb_none {display: none;}
  .menu_top {
    background: #2C3E50;
  }
}
.nav_header_2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.nav_header_2 .flex_barmenu img {
  height: 28px;
}
@media screen and (min-width: 585px) {
  .desk_none {display: none;}
}

/* Contenido */
.bg_content {background: #f4f6f7;}
.h_section {min-height: 90vh;}
.title_admin_1 {
  font-size: 20px;
  color: #2C3E50;
  font-weight: 600;
}
.title_admin_1 i {color: #92B222;}
.card_dash_1, .card_dash_2, .card_dash_3 {
  border-radius: 15px;
  padding: 15px;
}
.card_dash_1 {
  background: #92B222;
  color: #fff;
}
.card_dash_2 {
  background: #2C3E50;
  color: #fff;
}
.card_dash_3 {background: #fff;}
.card_dash_3 h2 {color: #92B222;}
.card_dash_3 label {color: #2C3E50;}
.flex_card {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}
.flex_card label {font-size: 12px;}
.table_dashboard {
  border-spacing: 1px 9px;
  border-collapse: separate;
}
.table_dashboard tbody tr {
  vertical-align: middle;
  font-size: 13px;
  box-shadow: 0px 1px 5px 1px #e9e9e9;
  border-radius: 11px;
}
.table_dashboard tr td:first-child,
.table_dashboard tr th:first-child {
  border-radius: 10px 0 0 10px;
}
.table_dashboard tr td:last-child,
.table_dashboard tr th:last-child {
  border-radius: 0 10px 10px 0;
}
.lab_dash {
  background: #e6e6e6;
  padding: 5px 10px;
  margin-bottom: 0px;
  border-radius: 5px;
  min-width: 110px;
}
.lab_dash i {
  font-size: 6px;
  margin-right: 3px;
}
.lab_dash.active {background: #eaf0d3;}
.lab_dash.active i {color: #92B222;}
.lab_dash.danger {background: #ffdddd;}
.lab_dash.danger i {color: #ff0000;}

/* panel principal*/
.btn_dash_1, .btn_dash_1:hover {
  background: #2C3E50;
  color: #fff;
}
.btn_dash_2,
.btn_dash_2:hover {
  background: linear-gradient(to right, #b1d13f, #8caa21);
  color: #fff;
}
.btn_dash_3,
.btn_dash_3:hover {
  background: #0051fe;
  color: #fff;
}
.title_admin_2 {
  font-size: 13px;
}
.card_simple {
  background: #fff;
  border-radius: 15px;
}
.table_dash_2 {font-size: 13px;}
.table_dash_2 th, .table_dash_2 td {
  padding-top: 13px;
  padding-bottom: 13px;
  vertical-align: middle;
}
table .btn_dash_1, table .btn_dash_2, table .btn_dash_3 {
  font-size: 13px;
  border-radius: 20px;
  min-width: 100px;
}
.table_link {
  font-weight: 500;
  color: #2C3E50;
  text-decoration: none;
}

/* Informes preview */
.size_print {
  width: 210mm;
  height: 297mm;
  background-image: url('/2026/img/back_informe.jpeg');
  background-size: 100% 100%;
}
.informe_img {height: 60px;}
.informe_foto {
  border: 10px solid #fff;
  width: 100%;
  box-shadow: 0px 1px 5px 1px #e9e9e9;
}
.informe_table thead th {
  background: #92B222;
  color: #fff;
  border: 1px solid #92B222;
  text-align: center;
}
.informe_table tbody td {
  border: 1px solid #92B222;
  font-size: 13px;
}
.title_informe_1 {
  font-size: 15px;
  font-weight: 300;
}
.text_espec {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.vertical_title {
  font-size: 25px;
  color: #92B222;
  line-height: 1.3;
  text-align: center;
  position: absolute;
  transform: rotate(270deg);
  width: 230px;
  top: 79px;
  left: -35px;
  font-weight: 500;
}
.grafic_informe {
  border: 1px solid #92B222;
  min-height: 250px;
}
.title_informe_2 {
  font-size: 20px;
  font-weight: 400;
  color: #92B222;
}
.table_statics thead th {
  background: #92B222;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
}
.table_statics tbody td {
  font-size: 13px;
}
.table_statics thead th, .table_statics tbody td {
  padding-top: 2px;
  padding-bottom: 2px;
}
.top_modal {
  border-bottom: 1px solid #dee2e6;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  line-height: 1.3;
}
.btn_modal_1, .btn_modal_1:hover {border: 1px solid #999;}
.btn_modal_2, .btn_modal_2:hover {
  border: 1px solid #92B222;
  background: #92B222;
  color: #fff;
}