/* ============================================================
   assets/css/app.css — MAE Web
   Reemplaza bootstrap.min.css + bootkit.css.
   Solo implementa clases que style.css NO define desde cero.
   style.css ya cubre: .btn-*,
.panel-*,
(parcial) .table,
.modal-content.
   Tokens y refuerzo visual: este archivo (carga primero,
style.css aplica encima).
   ============================================================ */

/* ── Design tokens (MAE) ─────────────────────────────────────────── */
:root {
  --mae-font: "Titillium Web", "Segoe UI", system-ui, sans-serif;
  --mae-font-size: 14px;
  --mae-text: #1a1d24;
  --mae-text-muted: #5c6470;
  --mae-link: #2b6ead;
  --mae-link-hover: #1f5a8c;
  --mae-primary: #368ee0;
  --mae-primary-dark: #2a6cb5;
  --mae-teal: #2dc9b7;
  --mae-teal-dark: #26b0a0;
  --mae-success: #47a947;
  --mae-app-bg: #e8ebf0;
  --mae-surface: #ffffff;
  --mae-border: #dce1ea;
  --mae-radius: 8px;
  --mae-radius-sm: 4px;
  --mae-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  --mae-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
} /* ── Box-sizing global (Bootstrap reset) ────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
} /* ── Body base ──────────────────────────────────────────────────── */
body {
  font-family: var(--mae-font);
  font-size: var(--mae-font-size);
  line-height: 1.5;
  color: var(--mae-text);
  background-color: #fff;
}
a {
  color: var(--mae-link);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--mae-link-hover);
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--mae-primary);
  outline-offset: 2px;
}
img {
  vertical-align: middle;
} /* ── Grid ───────────────────────────────────────────────────────── */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row::after {
  content: "";
  display: table;
  clear: both;
} /* Columnas base (xs — mobile first,
sin media query) */
[class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
  width: 100%;
} /* xs (≥0px) — siempre activas */
.col-xs-1 {
  width: 8.33333%;
}
.col-xs-2 {
  width: 16.66667%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-4 {
  width: 33.33333%;
}
.col-xs-5 {
  width: 41.66667%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-7 {
  width: 58.33333%;
}
.col-xs-8 {
  width: 66.66667%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-10 {
  width: 83.33333%;
}
.col-xs-11 {
  width: 91.66667%;
}
.col-xs-12 {
  width: 100%;
} /* sm (≥768px) */
@media (min-width: 768px) {
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
} /* md (≥992px) */
@media (min-width: 992px) {
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
} /* lg (≥1200px) */
@media (min-width: 1200px) {
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
} /* ── Forms ──────────────────────────────────────────────────────── */
/* .form-control unificado: ver bloque "Formularios (MAE)" más abajo */
.form-group {
  margin-bottom: 1rem;
}
.form-group::after {
  content: "";
  display: table;
  clear: both;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.control-label {
  font-weight: 700;
}
.form-actions {
  padding: 10px 0;
  margin-top: 10px;
}
.form-bordered .form-group {
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
} /* En formularios MAE no usamos separadores horizontales por fila. */
.mae-form-layout.form-bordered .form-group,
.mae-form-layout .form-bordered .form-group,
form.mae-form-layout .form-group {
  border-bottom: 0;
  padding-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
  font-size: 12px;
} /* Checkbox custom (bootkit) */
.checkbox {
  padding-left: 20px;
}
.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 5px;
}
.cr {
  position: relative;
  display: inline-block;
  border: 1px solid #a9a9a9;
  border-radius: 2px;
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 6px;
}
.cr .cr-icon {
  position: absolute;
  font-size: 10px;
  line-height: 0;
  top: 50%;
  left: 15%;
  color: #fff;
}
input[type="checkbox"]:checked + .cr {
  background-color: var(--mae-primary);
  border-color: var(--mae-primary);
} /* ── Input group ────────────────────────────────────────────────── */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  width: 100%;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon:first-child {
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.input-group-addon:last-child {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn {
  border-radius: 4px 0 0 4px;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn {
  border-radius: 0 4px 4px 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
  border-radius: 0;
}
.input-group-btn:first-child > .btn {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
}
.input-group-btn:last-child > .btn {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333;
  border-radius: 6px;
}
.input-md {
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
} /* ── Modal ──────────────────────────────────────────────────────── */
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 800px;
    margin: 30px auto;
  }
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1039;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header::after {
  content: "";
  display: table;
  clear: both;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer::after {
  content: "";
  display: table;
  clear: both;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
} /* ── Nav base ───────────────────────────────────────────────────── */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav::after {
  content: "";
  display: table;
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav-right {
  float: right;
} /* Tab pane visibility */
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
} /* ── Close button ───────────────────────────────────────────────── */
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
} /* ── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li::before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > .active {
  color: #777;
} /* ── Label ──────────────────────────────────────────────────────── */
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label-default {
  background-color: #777;
}
.label-primary {
  background-color: #337ab7;
}
.label-success {
  background-color: #5cb85c;
}
.label-info {
  background-color: #5bc0de;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-danger {
  background-color: #d9534f;
} /* ── Utilities ──────────────────────────────────────────────────── */
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-muted {
  color: #777 !important;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
} /* Responsive visibility */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  .hidden-lg {
    display: none !important;
  }
} /* Bootstrap 4 utilities usados en el proyecto */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.align-items-center {
  align-items: center !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-lg {
  margin-bottom: 20px !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-2 {
  margin-top: 8px !important;
} /* Custom util */
.visibleno {
  display: none !important;
}
.right {
  float: right;
}
.red {
  color: #d9534f;
} /* ── Bootkit bk-* subset ────────────────────────────────────────── */
/* (Las clases bk-margin-*,
bk-padding-*,
bk-radius,
etc. ya están en style.css) */
.bk-widget {
  /* wrapper vacío — el estilo lo pone style.css */
}
.bk-bg-info {
  background-color: #2dc9b7 !important;
}
.bk-bg-white {
  background-color: #ffffff !important;
}
.bk-bg-very-light-gray {
  background-color: #f6f6f6 !important;
}
.bk-bg-primary {
  background-color: #368ee0 !important;
}
.bk-bg-success {
  background-color: #47a947 !important;
}
.bk-bg-warning {
  background-color: #f9af3f !important;
}
.bk-bg-danger {
  background-color: #f33d2c !important;
}
.bk-bg-inverse {
  background-color: #222222 !important;
}
.bk-border-off {
  border: none !important;
  box-shadow: none !important;
}
.bk-border-primary {
  border: 1px solid #368ee0 !important;
}
.bk-border-success {
  border: 1px solid #47a947 !important;
}
.bk-border-info {
  border: 1px solid #2dc9b7 !important;
}
.bk-border-warning {
  border: 1px solid #f9af3f !important;
}
.bk-border-danger {
  border: 1px solid #f33d2c !important;
}
.bk-border-inverse {
  border: 1px solid #222222 !important;
}
.bk-border-light-gray {
  border: 1px solid #e6e6e6 !important;
}
.bk-border-very-light-gray {
  border-color: #f5f5f5 !important;
}
.bk-ltr {
  direction: ltr;
}
.bk-fg-danger {
  color: #d9534f !important;
}
.bk-fg-success {
  color: #47a947 !important;
} /* Bootkit transitions */
a [class*="bk-bg-"]:not([class*="bk-bg-darken"]):not([class*="bk-bg-lighten"]) {
  transition: background 0.3s ease 0s;
} /* Bootkit bk-widget.panel styles (originally from bootkit.css) */
.bk-widget.panel,
.bk-widget .panel {
  overflow: hidden;
  background-color: #fff;
}
.bk-widget.panel .panel-body,
.bk-widget .panel .panel-body {
  border-radius: 4px;
}
.bk-widget.panel .panel-heading,
.bk-widget .panel .panel-heading {
  border-radius: 4px 4px 0 0;
} /* ── Form variants adicionales ──────────────────────────────────── */
.form-vertical .form-group {
  margin-bottom: 10px;
}
.form-vertical .control-label {
  text-align: left;
  margin-bottom: 5px;
} /* ── Navbar layout (Bootstrap 3 equivalents missing from style.css) ─ */
.navbar-left {
  float: left !important;
}
.navbar-right {
  float: right !important;
}
.navbar-nav > li {
  float: left;
}
.navbar-nav > li > a {
  display: block;
} /* dropdown — Bootstrap JS adds .open; style.css handles .userbox.open */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  list-style: none;
}
.open > .dropdown-menu {
  display: block;
} /* ── Login page layout ───────────────────────────────────────────── */
.col-sm-12.full {
  min-height: 100vh;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-sm-12.full > .row {
  width: 100%;
  margin: 0;
}
.col-sm-12.full .login-box {
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  padding: 18px;
} /* Login card: semitransparent white card with shadow */
.login-box .login-card,
.login-box .panel {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.login-box .login-card-body,
.login-box .login-card > .panel-body,
.login-box .panel-body {
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 6px !important;
  padding: 26px 20px 20px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
} /* Login header/logo */
.login-box .header {
  background: transparent;
  margin-bottom: 20px;
}
.login-box .header img {
  padding-left: 0 !important;
  max-width: 100%;
  height: auto;
}
.login-box .header h4 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 0;
} /* Login form elements */
.login-form .form-group {
  margin-bottom: 15px;
}
.login-form label {
  color: #555;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
.login-form .form-control {
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
}
.login-form .form-control:focus {
  border-color: #368ee0;
  box-shadow: 0 0 0 2px rgba(54, 142, 224, 0.2);
}
.login-form .input-group {
  display: flex;
  width: 100%;
}
.login-form .input-group .form-control {
  flex: 1;
  border-right: 0;
}
.login-form .input-group-addon {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-left: none;
  color: #999;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-height: 38px;
  margin-left: -1px; /* evita corte visual entre input y addon */
}
.login-form .input-group.input-group-icon .input-group-addon {
  width: 42px;
  padding: 0;
}
.login-form .input-group.input-group-icon .icon {
  width: 42px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a6;
  font-size: 14px;
  line-height: 1;
}
.login-form .input-group .form-control:first-child {
  border-radius: 4px 0 0 4px;
}
.login-form .input-group-addon:last-child {
  border-radius: 0 4px 4px 0;
}
.login-form .input-group .form-control:first-child {
  border-right: none;
}
.login-box .bk-padding-left-20 {
  padding-left: 28px !important;
}
.login-box .bk-padding-right-20 {
  padding-right: 28px !important;
} /* Tamaño CTA: el aspecto (gradiente,
sombra) lo define mae-buttons.css + .btn-primary */
.login-form .btn-login {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  min-width: 100px;
  border-radius: var(--mae-btn-radius, 7px);
}
.login-form .btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
} /* Login footer */
.login-box .login-form + p {
  color: #333;
  font-size: 12px;
  margin-top: 25px;
}
.login-copyright,
.login-box .login-copyright {
  margin: 26px 20px 10px;
  padding: 14px 16px;
  border-radius: var(--mae-radius-sm);
  font-size: 12px;
  line-height: 1.45;
  color: #333 !important;
}
.login-copyright__link {
  color: var(--mae-primary) !important;
}
.login-copyright__link:hover {
  color: var(--mae-primary-dark) !important;
}
@media (max-width: 479px) {
  .login-box .header h4 {
    text-align: center;
    padding-right: 0;
  }
  .login-box .login-card-body,
  .login-box .login-card > .panel-body,
  .login-box .panel-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .login-box .bk-padding-left-20,
  .login-box .bk-padding-right-20 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .login-box .login-copyright {
    margin: 22px 12px 8px;
  }
} /* ── Dashboard main layout ───────────────────────────────────────── */
.main {
  background: #ecedf0;
  min-height: calc(100vh - 62px);
  padding: 110px 20px 60px 258px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .main {
    padding: 148px 37px 60px 278px;
  }
} /* Fix background gaps - keep original layout */
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--mae-app-bg);
} /* Barra de título fija: refina sombra y gradiente (conserva layout de style.css) */
.main .page-header {
  background: linear-gradient(135deg, #3bbfb4 0%, var(--mae-teal) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.main .page-header h2 {
  border-bottom-color: rgba(255, 255, 255, 0.35);
} /* Contenedor tipo tarjeta (alias opcional) */
.mae-card.panel,
.panel.mae-card,
.mae-card.bk-widget {
  border-radius: var(--mae-radius);
  box-shadow: var(--mae-shadow);
  border-color: var(--mae-border);
  overflow: hidden;
}
.panel.mae-card.bk-border-off,
.mae-card.bk-widget.bk-border-off {
  border: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
} /* Dashboard panel/card styles */
.main .panel {
  background: var(--mae-surface);
  border: 1px solid var(--mae-border);
  border-radius: var(--mae-radius);
  box-shadow: var(--mae-shadow);
  margin-bottom: 1.25rem;
}
.main .panel .panel-heading {
  background: #fff;
  border-bottom: 1px solid var(--mae-border);
  padding: 12px 18px;
  border-radius: var(--mae-radius) var(--mae-radius) 0 0;
}
.main .panel .panel-heading.bk-bg-info {
  background: linear-gradient(
    135deg,
    var(--mae-teal) 0%,
    var(--mae-teal-dark) 100%
  );
  color: #fff;
  border-bottom: none;
}
.main .panel .panel-heading h3,
.main .panel .panel-heading .panel-title {
  font-size: var(--mae-font-size);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--mae-text);
}
.main .panel .panel-heading.bk-bg-info h3,
.main .panel .panel-heading.bk-bg-info .panel-title {
  color: #fff;
}
.main .panel .panel-body {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 0 0 var(--mae-radius) var(--mae-radius);
} /* Panel default (vistas con panel-default) */
.main .panel.panel-default {
  border: 1px solid var(--mae-border);
  border-radius: var(--mae-radius);
  box-shadow: var(--mae-shadow);
  background: var(--mae-surface);
}
.main .panel.panel-default > .panel-heading {
  background: #f0f3f8;
  color: var(--mae-text);
  border-bottom: 1px solid var(--mae-border);
  font-weight: 600;
}
.main .panel.panel-default > .panel-heading .panel-title {
  color: var(--mae-text);
} /* Dashboard card buttons */
.main .panel .btn-lg {
  padding: 20px 15px;
}
.main .panel .btn-lg i {
  font-size: 28px;
  margin-bottom: 8px;
} /* ── Formularios (MAE unificado) ─────────────────────────────────── */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--mae-text);
}
.form-label .required {
  color: #c62828;
  margin-left: 0.2rem;
} /* Una sola definición global: style.css añade reglas; esta base gana en claridad */
.form-control {
  display: block;
  width: 100%;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mae-text);
  background-color: #fff;
  background-image: none;
  border: 1px solid #c5cad3;
  border-radius: var(--mae-radius-sm);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
select.form-control,
textarea.form-control {
  min-height: 0;
  height: auto;
}
input[type="file"].form-control,
input[type="range"].form-control {
  min-height: 0;
}
.form-control:focus {
  outline: none;
  border-color: var(--mae-primary);
  box-shadow: 0 0 0 3px rgba(54, 142, 224, 0.2);
}
.form-control:disabled {
  background: #e9ecef;
  cursor: not-allowed;
  box-shadow: none;
}
.form-hint {
  font-size: 0.8rem;
  color: #757575;
  margin-top: 0.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
} /* ── Tablas / DataTables (estilos de cea-v8) ───────────────────────── */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
}
table.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: #fff;
}
table.table th {
  background: #f0f4fb;
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-weight: 700;
  color: #333;
  border: none;
  border-bottom: 2px solid #d0d8e8;
  border-right: 1px solid #e4e8f0;
  white-space: nowrap;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
table.table td {
  padding: 0.52rem 0.9rem;
  border: none;
  border-bottom: 1px solid #edf0f5;
  vertical-align: middle;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
}
table.table tbody tr:last-child td {
  border-bottom: none;
}
table.table tbody tr:hover td {
  background: rgba(21, 101, 192, 0.045);
} /* ── Badges ─────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.badge-success {
  background: #e8f5e9;
  color: #2e7d32;
}
.badge-error {
  background: #ffebee;
  color: #c62828;
}
.badge-danger {
  background: #ffebee;
  color: #c62828;
} /* Compatibilidad Bootstrap */
.badge-warning {
  background: #fff3e0;
  color: #e65100;
}
.badge-info {
  background: #e1f5fe;
  color: #01579b;
}
.badge-gray {
  background: #eeeeee;
  color: #616161;
}
.badge-primary {
  background: #e3f2fd;
  color: #1565c0;
} /* ── Alertas ─────────────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  position: relative;
}
.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}
.alert-error {
  background: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
}
.alert-danger {
  background: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
} /* Compatibilidad Bootstrap */
.alert-warning {
  background: #fff3e0;
  color: #e65100;
  border-left: 4px solid #e65100;
}
.alert-info {
  background: #e1f5fe;
  color: #01579b;
  border-left: 4px solid #01579b;
} /* Navbar userbox fix */
.navbar .userbox {
  display: flex;
  align-items: center;
  margin: 0 10px 0 0;
  height: 62px;
}
.navbar .userbox > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.navbar .userbox .profile-picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .userbox .profile-info {
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: left;
}
.navbar .userbox .name {
  color: #000011;
  font-size: 13px;
  line-height: 1.2;
}
.navbar .userbox .role {
  color: #acacac;
  font-size: 11px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.navbar .userbox .role i {
  color: #47a947;
  font-size: 10px;
  margin-right: 4px;
}
.navbar .userbox .custom-caret {
  color: #000011;
  font-size: 16px;
} /* Userbox dropdown menu */
.navbar .userbox {
  position: relative;
}
.navbar .userbox > a {
  position: relative;
  z-index: 101;
} /* Posición y sombra del panel usuario: ver mae-userbox.css (carga al final) */
.navbar .userbox .dropdown-menu {
  position: absolute;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  min-width: 200px;
  padding: 0;
  margin-top: 4px;
  display: none;
  z-index: 200;
}
.navbar .userbox .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .userbox .dropdown-menu li {
  padding: 0;
  line-height: 35px;
}
.navbar .userbox .dropdown-menu li a {
  color: #7d7d7d;
  display: block;
  text-decoration: none;
  font-size: 12px;
  padding: 5px 15px;
}
.navbar .userbox .dropdown-menu li a:hover {
  background: rgba(54, 142, 224, 0.08);
  color: var(--mae-primary);
}
.navbar .userbox .dropdown-menu li a i {
  margin-right: 8px;
  width: 17px;
  font-size: 17px;
  vertical-align: middle;
} /* ── Misc ────────────────────────────────────────────────────────── */
.ui-widget {
  font-family: inherit;
  font-size: inherit;
} /* === MERGED FROM style.css === */

html,
body {
  background: #ecedf0;
  width: 100%;
}
body {
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100%;
  position: relative;
  direction: ltr;
  color: #777;
  overflow-x: hidden;
  overflow-y: scroll;
}
code,
kbd,
pre,
samp {
  font-family: "Titillium Web", sans-serif;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
}
.main {
  background: #ecedf0;
  padding: 148px 37px 98px 278px;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 0;
}
blockquote {
  font-size: 14px;
  border-left: 5px solid #eeeeee;
  color: #d4d4d4;
}
blockquote.pull-right {
  border-right: 5px solid #eeeeee;
}
.dropdown-menu {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
}
.dropdown-menu li a:hover {
  background-color: #eeeeee;
}
.dropdown-menu a {
  cursor: pointer;
}
.bk-margin-top-10 {
  margin-top: 10px !important;
}
.bk-margin-bottom-15 {
  margin-bottom: 15px !important;
}
.bk-margin-top-15 {
  margin-top: 15px !important;
}
.bk-padding-15 {
  padding: 15px !important;
}
.bk-padding-bottom-20 {
  padding-bottom: 20px !important;
}
.bk-padding-top-30 {
  padding-top: 30px !important;
}
.bk-radius {
  border-radius: 4px !important;
} /* Header Section
=================================================================== */
/* Userbox */
.userbox {
  display: inline-block;
  margin: -3px 17px 0 0;
  position: relative;
  vertical-align: middle;
}
.userbox > a {
  display: inline-block;
  text-decoration: none;
}
.userbox a:hover {
  text-decoration: none;
}
.userbox .profile-info,
.userbox .profile-picture {
  display: inline-block;
  vertical-align: middle;
}
.userbox .profile-picture img {
  width: 35px;
  color: transparent;
}
.userbox .profile-info {
  margin: 0 25px 0 10px;
}
.userbox .name,
.userbox .role {
  display: block;
}
.userbox .name {
  color: #000011;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2em;
}
.userbox .role {
  color: #acacac;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.2em;
}
.userbox .custom-caret {
  color: #000011;
  font-size: 16px;
  font-weight: bold;
}
.userbox .custom-caret:before {
  content: "\f107";
} /* Userbox - Open */
.userbox.open > a {
  position: relative;
  z-index: 993;
}
.userbox.open > a .custom-caret:before {
  content: "\f106";
}
.userbox.open .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  left: -11px;
  padding: 45px 10px 0;
  top: -10px;
  width: 100%;
  z-index: 992;
  border-radius: 0 0 4px 4px;
}
.userbox.open .dropdown-menu li {
  margin-bottom: 5px;
}
.userbox.open .dropdown-menu a {
  border-radius: 2px;
  color: #7d7d7d;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 15px;
  line-height: 1.5rem;
  padding: 5px 10px;
}
.userbox.open .dropdown-menu a:hover {
  background: none;
  color: #368ee0;
}
.userbox.open .dropdown-menu i {
  font-size: 17px;
  font-size: 1.7rem;
  margin-right: 3px;
  vertical-align: middle;
  width: 20px;
} /* Userbox - Mobile */
@media only screen and (max-width: 767px) {
  .userbox {
    float: left;
    margin: 0 0 0 12px;
    position: relative;
  }
  .userbox:after {
    background: #e9e9e6;
    content: "";
    height: 63px;
    margin: 0;
    position: absolute;
    right: -21px;
    top: -18px;
    width: 1px;
  }
  .userbox.open .dropdown-menu {
    left: -5px;
    padding: 43px 0 0 0;
  }
} /* Navbar Notifications */
.navbar {
  margin: 0;
  padding: 0 10px 0 240px;
  height: 62px;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #414141;
  line-height: 62px;
  background: #ffffff !important;
  position: fixed;
  width: 100%;
  z-index: 11;
}
.navbar .container-nav {
  height: 62px;
}
.navbar .navbar-actions {
  font-size: 20px;
}
.navbar .navbar-actions a {
  color: #c8c8c8;
  border-left: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
}
.navbar .navbar-actions a i {
  border: none !important;
  width: 40px;
  margin-left: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-actions a i {
    margin-left: 10px;
  }
}
.navbar .navbar-nav li a {
  padding: 0;
  height: 62px;
  line-height: 62px;
  position: relative;
}
.navbar .navbar-nav li a:hover {
  background: none;
} /* Page Header
=================================================================== */
.navbar .navbar-actions .mae-ident-search {
  height: 62px;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.navbar .navbar-actions .mae-ident-search .dataTables_filter label,
.navbar .navbar-actions .mae-ident-search .dt-filter label {
  margin: 0;
}
.navbar .navbar-actions .mae-ident-search input[type="text"] {
  width: 210px;
}
.page-header {
  background: #3bbfb4;
  box-shadow: 1px 3px 0 1px #cccccc;
  height: 50px;
  padding: 0;
  z-index: 10;
  left: 240px;
  margin: 0;
  position: fixed;
  right: 0;
  top: 59px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.page-header .breadcrumb {
  width: 100%;
  padding: 17px 15px;
  margin-bottom: 5px;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
}
.page-header .breadcrumb > .active {
  color: #ffffff;
}
.page-header .breadcrumb li a {
  text-decoration: none;
  color: #ffffff;
}
.page-header .breadcrumb li i {
  margin-right: 5px;
  font-size: 18px;
}
.page-header h2 {
  color: #fff;
  border-bottom: 4px solid #368ee0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 50px;
  letter-spacing: normal;
  line-height: 50px;
  margin: 0 0 0 -1px;
  padding: 0 22px 0 20px;
  text-transform: uppercase;
} /* Sidebar
=================================================================== */
.sidebar {
  background: #3bbfb4 !important;
  color: #1a1d24;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 240px;
  z-index: 12;
  overflow: hidden;
  border-right: 1px solid #eef0f4;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}
body.mae-sidebar-collapsed .sidebar {
  transform: translateX(-100%);
}
body.mae-sidebar-collapsed .navbar {
  padding-left: 0;
}
body.mae-sidebar-collapsed .page-header {
  left: 0;
}
body.mae-sidebar-collapsed .main {
  padding-left: 37px;
}
.sidebar a {
  color: #c1ece8;
}
.sidebar .sidebar-header {
  padding: 10px 35px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  position: relative;
  background: #ffffff !important;
}
.sidebar .sidebar-header img {
  width: auto;
  height: 42px;
  text-align: center;
  margin: 0 auto;
} /*Navigation Sidebar Menu*/
.sidebar .sidebar-menu {
  /* Header 62px + footer fijo 135px: el menú scrollea entre ambos */
  max-height: calc(100vh - 62px - 135px);
  overflow-x: hidden;
  overflow-y: auto;
  width: 240px;
  -webkit-overflow-scrolling: touch;
}
.sidebar .sidebar-menu::-webkit-scrollbar {
  width: 6px;
}
.sidebar .sidebar-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}
.sidebar .sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: transparent;
  border-color: #428bca;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
}
.sidebar ul.nav.nav-sidebar {
  margin: 0;
  width: 240px;
  padding: 23px 0;
}
.sidebar ul.nav.nav-sidebar .flag {
  position: relative;
}
.sidebar ul.nav.nav-sidebar li {
  margin: 0;
  border-top: 1px solid #00d9d9;
  position: relative;
}
.sidebar ul.nav.nav-sidebar li:hover {
  background: none;
  color: #ffffff;
}
.sidebar ul.nav.nav-children li {
  border-top: none !important;
  border-bottom: none !important;
}
.sidebar ul.nav.nav-sidebar li.active,
.sidebar ul.nav.nav-sidebar ul.active a,
.sidebar ul.nav.nav-sidebar li.active a {
  background: none;
  color: #ffffff;
}
.sidebar ul.nav.nav-sidebar li.active:hover,
.sidebar ul.nav.nav-sidebar ul.active a:hover,
.sidebar ul.nav.nav-sidebar li.active a:hover {
  color: #ffffff !important;
}
.sidebar ul.nav.nav-sidebar li a {
  line-height: 13px;
  font-weight: 400;
  font-size: var(--mae-font-size);
  white-space: nowrap;
  text-overflow: ellipsis;
  border: 1px solid transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.sidebar ul.nav.nav-sidebar li a.active {
  background: none;
  color: #fff;
}
.sidebar ul.nav.nav-sidebar li a:hover {
  border-top-color: none;
  border-bottom-color: none;
  color: #ffffff;
  box-shadow: 3px 0 0 #ffffff inset;
}
.sidebar ul.nav.nav-sidebar > li > a {
  padding: 10px 25px;
}
.sidebar ul.nav.nav-sidebar > li > a:hover,
ul.nav-sidebar > li > a:focus {
  background-color: none;
}
.sidebar ul.nav.nav-sidebar > li.active > a {
  box-shadow: 3px 0 0 #ffffff inset;
}
.sidebar ul.nav.nav-sidebar > li.active > a:hover {
  color: #ffffff;
}
.sidebar ul.nav.nav-sidebar > li.active > i {
  color: #cccccc;
}
.sidebar ul.nav.nav-sidebar li span {
  vertical-align: middle;
}
.sidebar ul.nav.nav-sidebar li.text:hover {
  color: #ffffff;
}
.sidebar ul.nav.nav-sidebar li i {
  font-size: var(--mae-font-size);
  width: 1.1em;
  margin-right: 0.5em;
  text-align: center;
  vertical-align: middle;
}
.sidebar ul.nav.nav-sidebar li.nav-parent {
  position: relative;
}
.sidebar ul.nav.nav-sidebar li.nav-parent > a {
  cursor: pointer;
}
.sidebar ul.nav.nav-sidebar li.nav-parent > a:after {
  font-family: "FontAwesome", sans-serif;
  content: "\f107";
  font-size: 16px;
  font-size: 1.6rem;
  position: absolute;
  right: 0;
  top: 0;
  padding: 14px 25px;
}
.sidebar ul.nav.nav-sidebar li .nav-children {
  background: #2c8e86;
  box-shadow: none;
  display: none;
  padding: 10px 0;
}
.sidebar ul.nav.nav-sidebar li .nav-children li a {
  padding: 9px 15px 9px 70px;
  color: #c1ece8;
}
.sidebar ul.nav.nav-sidebar li .nav-children li a:hover,
.sidebar ul.nav.nav-sidebar li .nav-children li a:focus {
  background: none;
}
.sidebar ul.nav.nav-sidebar li .nav-children li.active > a {
  color: #ffffff;
}
.sidebar ul.nav.nav-sidebar li ul {
  display: none;
  background: #181d20;
  list-style: none;
  padding: 5px 0;
}
.sidebar ul.nav.nav-sidebar li ul li {
  margin: 5px 0;
}
.sidebar ul.nav.nav-sidebar li ul li ul li a {
  padding-left: 55px;
} /*sidebar footer*/
.sidebar .sidebar-footer {
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 240px;
  padding: 10px 20px 10px 20px;
  background: #3bbfb4;
  height: 135px;
  border-right: 1px solid #eef0f4;
}
.sidebar .sidebar-footer ul li a {
  color: #1a1d24;
}
.sidebar .sidebar-footer .small-chart-visits {
  display: inline-block;
  margin: 10px 15px;
  width: 100%;
}
.sidebar .sidebar-footer .small-chart-visits .small-chart {
  float: left;
  margin-bottom: 8px;
  min-width: 80px;
}
.sidebar .sidebar-footer .small-chart-visits .small-chart-info {
  display: inline-block;
  padding: 0 0 0 10px;
}
.sidebar .sidebar-footer .small-chart-visits .small-chart-info label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0;
  margin: 0;
  line-height: 15px;
}
.sidebar .sidebar-footer .small-chart-visits .small-chart-info strong {
  display: block;
  font-size: 13px;
  padding: 0;
  margin: 0;
  line-height: 15px;
}
.sidebar
  .sidebar-footer
  .small-chart-visits
  + .sidebar
  .sidebar-footer
  .small-chart-visits {
  margin-left: 25px;
}
.sidebar .sidebar-footer ul.sidebar-terms {
  margin: 0 0 20px 0;
  padding: 0;
}
.sidebar .sidebar-footer ul.sidebar-terms li {
  display: inline-block;
  width: 25%;
  margin: 0 -2px;
  padding: 0;
  text-align: center;
  font-size: 12px;
}
.sidebar .sidebar-footer ul.sidebar-terms li a:hover {
  text-decoration: underline;
} /* Buttons
=================================================================== */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: none;
  border-radius: 3px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn-default {
  color: #393939;
  background-color: #fff;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #f0f0f0;
  color: #444;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #2d6da3;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
}
.btn-primary .badge {
  color: #1f5a8c;
  background-color: #fff;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #0fb492;
}
.btn-success .badge {
  color: #0a6f5a;
  background-color: #fff;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #3498db;
}
.btn-info .badge {
  color: #1f5a8c;
  background-color: #fff;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f9a646;
}
.btn-warning .badge {
  color: #8a4b00;
  background-color: #fff;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d44344;
}
.btn-danger .badge {
  color: #9f1f22;
  background-color: #fff;
}
.btn-lg {
  padding: 12px 22px;
  font-size: 17px;
  line-height: 1.33;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn i {
  margin-top: 2px;
} /* Datepicker
=================================================================== */
.datepicker {
  border-radius: 4px;
}
.note-editor.active {
  border-color: #66afe9;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}
@media only screen and (max-width: 767px) {
  .note-editor .note-toolbar {
    text-align: left;
  }
} /* Notification Responsive */
@media only screen and (max-width: 767px) {
  html > body > .ui-pnotify {
    bottom: auto !important;
    left: 0 !important;
    margin: 0 !important;
    right: 0 !important;
    top: 60px !important;
    width: auto !important;
  }
  html > body > .ui-pnotify .notification {
    border-radius: 0 !important;
    height: auto !important;
    position: static !important;
    width: 100%;
  }
  html > body > .ui-pnotify .notification .ui-pnotify-title,
  html > body > .ui-pnotify .notification .ui-pnotify-text {
    padding-right: 35px !important;
  }
  html > body > .ui-pnotify .notification .ui-pnotify-sticker {
    display: none !important;
  }
  html > body > .ui-pnotify .notification .ui-pnotify-closer {
    display: block !important;
    font-size: 24px !important;
    visibility: visible !important;
  }
}
.pagination li.active a,
.pagination li.active span,
.pagination li.active a:hover,
.pagination li.active span:hover,
.pagination li.active a:focus,
.pagination li.active span:focus {
  background-color: #20a8d8;
  border-color: #20a8d8;
} /* Panel
=================================================================== */
.panel {
  background: transparent;
  border: none;
  box-shadow: none;
}
.panel .panel-heading {
  border: 1px solid #e8ebf0;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 10px 15px;
}
.panel .panel-heading .panel-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.panel .panel-body {
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body.no-padding {
  padding: 0;
}
.panel-body.padding-horizontal {
  padding-left: 15px;
  padding-right: 15px;
}
.panel-body.no-padding-bottom {
  padding-bottom: 0;
}
.panel.panel-default .panel-heading {
  background: #e8ebf0;
}
.panel.panel-default .panel-footer {
  background: #e8ebf0;
}
.panel.panel-info .panel-heading,
.panel.panel-info .panel-footer {
  background: #acdef6;
  color: #1a1d24;
  border-color: #acdef6;
} /* UI - Tabs
=================================================================== */
/* tabs */
.tabs {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 35px;
} /* navigation */
.nav-tabs {
  margin: 0;
  font-size: 0;
}
.nav-tabs li {
  display: inline-block;
  float: none;
}
.nav-tabs li:last-child a {
  margin-right: 0;
}
.nav-tabs li a {
  border-radius: 5px 5px 0 0;
  font-size: 13px;
  font-size: 1.3rem;
  margin-right: 1px;
}
.nav-tabs li a,
.nav-tabs li a:hover {
  background: #f4f4f4;
  border-bottom: none;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-top: 3px solid #dddddd;
  color: #555555;
}
.nav-tabs li a:hover {
  border-bottom-color: transparent;
  border-top: 3px solid #555555;
  box-shadow: none;
}
.nav-tabs li a:active,
.nav-tabs li a:focus {
  border-bottom: 0;
}
.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
  background: white;
  border-left-color: #eeeeee;
  border-right-color: #eeeeee;
  border-top: 3px solid #555555;
  color: #555555;
} /* content */
.tab-content {
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  background-color: white;
  border: 1px solid #eeeeee;
  border-top: 0;
  padding: 15px;
} /* content - footer inside */
.tab-content .panel-footer {
  margin: -15px;
  margin-top: 15px;
} /* Justified */
.nav-tabs.nav-justified {
  margin-bottom: -1px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.nav-tabs.nav-justified li {
  margin-bottom: 0;
}
.nav-tabs.nav-justified li:first-child a,
.nav-tabs.nav-justified li:first-child a:hover {
  border-radius: 5px 0 0 0;
  border-left: none;
}
.nav-tabs.nav-justified li:last-child a,
.nav-tabs.nav-justified li:last-child a:hover {
  border-radius: 0 5px 0 0;
  border-right: none;
}
.nav-tabs.nav-justified li a {
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  margin-right: 0;
}
.nav-tabs.nav-justified li a:hover,
.nav-tabs.nav-justified li a:focus {
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
}
.nav-tabs.nav-justified li.active a,
.nav-tabs.nav-justified li.active a:hover,
.nav-tabs.nav-justified li.active a:focus {
  background: white;
  border-top: 3px solid #555555;
  border-left: none;
  border-right: none;
  color: #555555;
}
.nav-tabs.nav-justified li.active a {
  border-bottom: 1px solid #fff;
}
.nav-tabs.nav-justified li.active a:hover {
  border-bottom: 1px solid #fff;
} /* states */
.tabs-primary .nav-tabs li a,
.tabs-primary .nav-tabs li a:hover,
.tabs-primary .nav-tabs.nav-justified li a,
.tabs-primary .nav-tabs.nav-justified li a:hover {
  color: #2693ff;
}
.tabs-primary .nav-tabs li a:hover,
.tabs-primary .nav-tabs.nav-justified li a:hover {
  border-top-color: #2693ff;
}
.tabs-primary .nav-tabs li.active a,
.tabs-primary .nav-tabs li.active a:hover,
.tabs-primary .nav-tabs li.active a:focus,
.tabs-primary .nav-tabs.nav-justified li.active a,
.tabs-primary .nav-tabs.nav-justified li.active a:hover,
.tabs-primary .nav-tabs.nav-justified li.active a:focus {
  border-top-color: #2693ff;
  color: #2693ff;
}
.owl-theme .owl-controls .owl-page.active span {
  filter: Alpha(Opacity=100); /*IE7 fix*/
  opacity: 1;
}
.modal-block-primary .fa {
  color: #428bca;
}
.modal-block-success .fa {
  color: #47a447;
}
.modal-block-warning .fa {
  color: #ed9c28;
}
.modal-block-danger .fa {
  color: #d2322d;
}
.modal-block-info .fa {
  color: #5bc0de;
}
.modal-block-dark .fa {
  color: #171717;
} /* Footer
=================================================================== */
#footer {
  background: #ffffff;
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  border-top: 1px solid #cccccc;
  padding-left: 250px;
  opacity: 0;
  -webkit-transition-duration: 0.9s;
  -moz-transition-duration: 0.9s;
  -ms-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  transition-duration: 0.9s;
}
#footer:hover {
  opacity: 0.9;
  -webkit-transition-duration: 0.9s;
  -moz-transition-duration: 0.9s;
  -ms-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  transition-duration: 0.9s;
}
#footer ul {
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 40px;
}
#footer ul li {
  display: inline-block;
  height: 40px;
  width: 25%;
  font-size: 10px;
}
#footer ul li:last-child {
  border-right: none !important;
}
#footer ul li .text {
  width: 100%;
  padding: 0 15px;
  float: left;
}
#footer ul li .text b {
  font-weight: 700;
}
#footer ul li .copyright {
  width: 100%;
  float: right;
  padding: 0 35px 0 0;
  border-left: 1px dashed #cccccc;
  background: #eeeeee;
  background: -webkit-linear-gradient(#f8f8f8, #eeeeee);
  background: -o-linear-gradient(#f8f8f8, #eeeeee);
  background: -moz-linear-gradient(#f8f8f8, #eeeeee);
  background: linear-gradient(#f8f8f8, #eeeeee);
} /* Toolbar gallery- Responsive */
@media only screen and (max-width: 767px) {
  .inner-toolbar {
    padding: 0 15px;
    margin: -40px -15px 30px;
  }
  .inner-toolbar > ul {
    padding: 0;
    margin: 0 0 0 10px;
  }
  .inner-toolbar ul > li {
    border-right: 0;
  }
  .inner-toolbar ul > li:first-child {
    padding-left: 0;
  }
  .inner-toolbar ul > li.right {
    float: left;
    padding-left: 0;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .inner-toolbar .nav-pills a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .mailbox .mailbox-compose {
    margin: -20px -15px 0 -15px;
  }
  .mailbox .mailbox-compose .compose {
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .mailbox .message-reply .mailbox-compose {
    margin: 0 -20px 0 -10px;
  }
  .mailbox .message-reply .mailbox-compose .compose {
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .timelineProfile .timeline-body:after {
    left: 20px;
  }
  .timelineProfile .timeline-title {
    margin: 0;
  }
  .timelineProfile .timeline-items > li {
    padding-left: 50px;
  }
} /* Table
=================================================================== */
/* Tables - Basic */
.table {
  width: 100%;
}
.table .table {
  background: transparent;
} /* Bootstrap uses important{
  margin-bottom: 0 !important;
}/* Tables - No More Tables technique (991px is the bootstrap SM max-width) */
@media only screen and (max-width: 991px) {
  .table.table-no-more,
  .table.table-no-more thead,
  .table.table-no-more tbody,
  .table.table-no-more tr,
  .table.table-no-more th,
  .table.table-no-more td {
    display: block;
  }
  .table.table-no-more thead tr {
    left: -9999px;
    position: absolute;
    top: -9999px;
  }
  .table.table-no-more tr {
    border-bottom: 1px solid #ddd;
  }
  .table.table-no-more td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left;
    white-space: normal;
  }
  .table.table-no-more td:before {
    content: attr(data-title);
    font-weight: bold;
    left: 6px;
    padding-right: 10px;
    position: absolute;
    text-align: left;
    top: 8px;
    white-space: nowrap;
    width: 45%;
  }
  .table.table-no-more.table-bordered td {
    border-bottom: 1px solid #efefef;
  }
  .table.table-no-more.table-condensed td:before {
    top: 5px;
  }
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #fff6f5;
}
@media only screen and (max-width: 991px) {
  .dataTables_wrapper .dataTables_length {
    margin-bottom: 15px;
  }
  .dataTables_wrapper .dataTables_length label {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .dataTables_wrapper .dataTables_filter label {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .dataTables_wrapper .datatables-footer .dataTables_info {
    margin-bottom: 15px;
    text-align: center;
  }
  .dataTables_wrapper .datatables-footer .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .datatables-footer .dataTables_paginate .pagination {
    display: inline-block;
  }
}
@media only screen and (max-width: 991px) {
  .dataTables_processing {
    left: auto;
    margin-left: 0;
    right: 0;
  }
}
.DTTT_Print,
.DTTT_Print .panel {
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
} /* Select2 for datatable
=================================================================== */
.select2-container.form-control {
  background: transparent;
  border: none;
  display: block;
  margin: 0;
  padding: 0;
}
.select2-container.select2-container-multi.form-control {
  height: auto;
}
.select2-container.input-lg .select2-choice {
  height: 45px;
  line-height: 1.33;
  border-radius: 6px;
}
.select2-container-multi.input-lg .select2-choices .select2-search-field input {
  height: 43px;
}
.input-lg .select2-chosen,
.input-lg .select2-choice > span:first-child,
.input-lg .select2-choices .select2-search-field input {
  padding: 10px 16px;
}
.select2-container-multi.input-lg .select2-choices .select2-search-choice {
  line-height: 24px;
}
.select2-container.input-lg .select2-choice .select2-arrow b,
.select2-container.input-lg .select2-choice div b {
  background-position: 0 9px;
}
.select2-dropdown-open.input-lg .select2-choice .select2-arrow b,
.select2-dropdown-open.input-lg .select2-choice div b {
  background-position: -18px 9px;
}
.input-group.select2-bootstrap-prepend [class^="select2-choice"] {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.input-group.select2-bootstrap-append [class^="select2-choice"] {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.select2-bootstrap-append .input-group-btn,
.select2-bootstrap-prepend .input-group-btn {
  vertical-align: top;
}
.select2-bootstrap-append .input-group-btn .btn,
.select2-bootstrap-prepend .input-group-btn .btn {
  vertical-align: top;
}
@media only screen and (max-width: 991px) {
  .timeline .tm-body:after {
    left: 20px;
  }
  .timeline .tm-title {
    margin: 0;
  }
  .timeline .tm-items > li {
    padding-left: 50px;
  }
  .timeline .tm-items > li .tm-info {
    margin: 0 0 15px;
  }
  .timeline .tm-items > li .tm-info:after {
    content: "";
    display: table;
    clear: both;
  }
  .timeline .tm-items > li .tm-icon {
    border-width: 2px;
    float: left;
    font-size: 22px;
    height: 40px;
    line-height: 36px;
    margin: 0 15px 0 0;
    padding: 0;
    position: static;
    width: 40px;
  }
  .timeline .tm-items > li .tm-datetime {
    margin: 0;
    position: static;
    text-align: left;
  }
  .timeline .tm-items > li .tm-datetime .tm-datetime-date {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .timeline .tm-items > li .tm-datetime .tm-datetime-time {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767px) {
  .timeline .tm-items > li .tm-box .tm-meta span {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  .fc .fc-header-right .btn-group {
    margin: 10px 0;
  }
  .fc .fc-header-right br.hidden {
    display: block !important;
  }
}
@media only screen and (max-width: 480px) {
  .fc .fc-header-left,
  .fc .fc-header-right {
    display: block;
    width: 100%;
  }
  .fc .fc-header-right {
    padding: 0 0 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .fc {
    margin-bottom: 30px;
  }
} /* Modal Dialog
=================================================================== */
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
} /* Responsive
=================================================================== */
@media (max-width: 991px) {
  .main {
    padding: 130px 15px 0 15px;
    z-index: 10;
    position: relative;
  }
  .page-header {
    left: 0;
  }
  html .inner-toolbar {
    left: 0;
  }
  .sidebar {
    z-index: 1;
    transform: translateX(-100%);
  }
  body.mae-sidebar-open .sidebar {
    transform: translateX(0);
    z-index: 13;
  }
  #sidebar-minify {
    display: none;
  }
  .navbar {
    padding: 0;
  }
  .navbar .navbar-actions {
    margin-left: -15px;
  }
  footer {
    padding: 0 20px;
    margin-bottom: 0;
    text-align: center;
  }
  #footer {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-form input[type="text"] {
    width: 200px !important;
  }
}
@media screen and (min-width: 768px) {
  .container-fluid.content {
    overflow: hidden;
  }
  .sidebar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
}
@media (max-width: 767px) {
  .container-fluid.content {
    overflow: hidden;
  }
  .userbox {
    margin: 0 10px 0 0;
    position: relative;
  }
  .main {
    padding: 125px 10px 0 10px !important;
  }
  .navbar {
    position: fixed;
  }
  .navbar .navbar-form {
    display: none;
  }
  .navbar .navbar-nav {
    margin-top: 0px;
  }
  .navbar .navbar-nav li {
    float: left;
  }
  .navbar .navbar-left {
    float: left;
  }
  .navbar .navbar-right {
    float: right;
  }
  .pricing-table .text-left {
    text-align: center;
  }
  .pricing-table .pricing-wrap {
    float: center;
    width: 100%;
    position: relative;
  }
  .pricing-table .most-popular {
    margin-top: 50px;
    float: center;
    width: 100%;
  }
  .wizard-tabs ul > li > a {
    padding: 8px;
  }
  .media-gallery .mg-files {
    padding: 100px 0 30px;
  }
}
@media (max-width: 479px) {
  .col-xxs-12 {
    width: 100%;
  }
  .panel {
    overflow: hidden;
  }
  .panel .panel-heading .panel-actions {
    display: none;
  }
  .badge {
    margin: 3px 1px;
  }
  .main {
    padding: 125px 10px 0 10px !important;
  }
  .userbox {
    margin: 0 10px 0 0;
    position: relative;
  }
  .login-box .header,
  .register-box .header,
  .recover-box .header {
    text-align: center;
    padding-left: 0;
  }
  .login-box .header img,
  .register-box .header img,
  .recover-box .header img {
    padding-left: 0;
  }
  .login-box .header h4,
  .register-box .header h4,
  .recover-box .header h4 {
    text-align: right;
    padding-right: 10px;
  }
  .mailbox .panel .mailbox-btn-action {
    text-align: left;
  }
  .mailbox .mailbox-btn-action .item-action-group {
    margin: 0;
  }
  .mailbox .message .header .date {
    width: 100%;
    text-align: left;
    float: left;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .pricing-table .text-left {
    text-align: center;
  }
  .pricing-table .pricing-wrap {
    float: center;
    width: 100%;
    position: relative;
  }
  .pricing-table .most-popular {
    margin-top: 50px;
    float: center;
    width: 100%;
  }
  .datepicker.datepicker-primary {
    min-width: 200px;
  }
  .dropzone .dz-default.dz-message {
    background-image: none;
  }
  .wizard-tabs ul > li > a {
    padding: 8px;
  }
  .sz1 {
    width: 230px;
    height: 160px;
  }
  .sz0 {
    width: 230px;
    height: 80px;
  }
  .media-gallery .mg-files {
    padding: 95px 0 30px;
  }
}
.visibleno {
  opacity: 0;
}
.d-none {
  display: none;
} /* Filas de tabla más delgadas */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 5px 8px !important;
  vertical-align: middle !important;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 3px 5px !important;
} /* Reducir altura de botones en tablas */
.table .btn {
  padding: 3px 8px !important;
}
.table .btn-sm {
  padding: 2px 6px !important;
}
.mt-16 {
  margin-top: 16px !important;
}

/* Inline styles migrated from PHP templates */
.mae-w-70 {
  width: 70% !important;
}
.mae-w-80 {
  width: 80% !important;
}
.mae-w-95 {
  width: 95% !important;
}
.mae-w-100 {
  width: 100% !important;
}
.mae-w-100px {
  width: 100px !important;
}
.mae-w-120px {
  width: 120px !important;
}
.mae-w-150px {
  width: 150px !important;
}
.mae-max-w-60 {
  max-width: 60% !important;
}
.mae-max-w-50pct {
  max-width: 50% !important;
}
.mae-max-w-50px {
  max-width: 50px !important;
}
.mae-max-w-80px {
  max-width: 80px !important;
}
.mae-max-w-100px {
  max-width: 100px !important;
}
.mae-max-w-60px {
  max-width: 60px !important;
}
.mae-max-w-90 {
  max-width: 90px !important;
}
.mae-max-w-300px {
  max-width: 300px !important;
}
.mae-max-h-50px {
  max-height: 50px !important;
}
.mae-max-w-200 {
  max-width: 200px !important;
}
.mae-border-none {
  border: none !important;
}
.mae-text-right {
  text-align: right !important;
}
.mae-text-center {
  text-align: center !important;
}
.mae-text-150 {
  font-size: 1.5em !important;
}
.mae-ml-5 {
  margin-left: 5px !important;
}
.mae-mt-20 {
  margin-top: 20px !important;
}
.mae-bg-transparent {
  background: transparent !important;
}
.mae-pl-0 {
  padding-left: 0 !important;
}
.mae-login-bg-cover {
  background-image: url("../../images/bg1.jpg");
  background-size: cover;
}
.mae-summary-row {
  font-weight: bold;
  background-color: #eceff1;
}

/* Login alert moved from inline <style> block */
.alert-login {
  margin: 15px 20px;
  padding: 12px;
  border-radius: 4px;
  display: none;
}
.alert-login.show {
  display: block;
}
.alert-login.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.alert-login.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
