@charset "UTF-8";
@import 'app.css';
:root {
  --grey-shades-900: #212121;
  --grey-shades-800: #424242;
  --grey-shades-700: #616161;
  --grey-shades-600: #757575;
  --grey-shades-500: #9E9E9E;
  --grey-shades-400: #BDBDBD;
  --grey-shades-300: #E0E0E0;
  --grey-shades-200: #EEEEEE;
  --grey-shades-100: #F5F5F5;
  --grey-shades-50: #FEFEFE;
  --status-primary-background: #CCE5FF;
  --status-primary-text: #195392;
  --status-secondary-background:#EEEEEE;
  --status-secondary-text: #383D41;
  --status-info-background: #E4EBFF;
  --status-info-text: #324EBE;
  --status-success-background: #D4EDDA;
  --status-success-text: #258A3B;
  --status-error-background: #F8D7DA;
  --status-error-text: #B13333;
  --status-warning-background: #FFF3CD;
  --status-warning-text: #9E7A18;
  --status-neutral-1-background: #E6EDD2;
  --status-neutral-1-text: #6B8D0B;
  --status-neutral-2-background: #EDDDD2;
  --status-neutral-2-text: #805435;
  --btn-danger: #A72A2A;
  --btn-danger-hover: #6E1B1B;
}

.warning-color {
  color: var(--status-warning-text) !important;
}

.error-color {
  color: var(--status-error-text) !important;
}

.success-color {
  color: var(--status-success-text) !important;
}

.warning-background {
  background-color: var(--status-warning-text) !important;
}

.error-background {
  background-color: var(--status-error-text) !important;
}

.success-background {
  background-color: var(--status-success-text) !important;
}

.background-status-primary {
  background-color: var(--status-primary-background) !important;
}

.background-status-secondary {
  background-color: var(--status-secondary-background) !important;
}

.background-status-info {
  background-color: var(--status-info-background) !important;
}

.background-status-error {
  background-color: var(--status-error-background) !important;
}

.background-status-warning {
  background-color: var(--status-warning-background) !important;
}

.background-status-success {
  background-color: var(--status-success-background) !important;
}

.background-status-neutral-1 {
  background-color: var(--status-neutral-1-background) !important;
}

.background-status-neutral-2 {
  background-color: var(--status-neutral-2-background) !important;
}

.background-status-transparent {
  background-color: transparent !important;
}

.color-primary-900 {
  color: var(--primary-shades-900) !important;
}

.color-primary-800 {
  color: var(--primary-shades-800) !important;
}

.color-primary-700 {
  color: var(--primary-shades-700) !important;
}

.color-primary-600 {
  color: var(--primary-shades-600) !important;
}

.color-primary-500 {
  color: var(--primary-shades-500) !important;
}

.color-primary-400 {
  color: var(--primary-shades-400) !important;
}

.color-primary-300 {
  color: var(--primary-shades-300) !important;
}

.color-primary-200 {
  color: var(--primary-shades-200) !important;
}

.color-primary-100 {
  color: var(--primary-shades-100) !important;
}

.color-primary-50 {
  color: var(--primary-shades-50) !important;
}

.color-secondary-900 {
  color: var(--secondary-shades-900) !important;
}

.color-secondary-800 {
  color: var(--secondary-shades-800) !important;
}

.color-secondary-700 {
  color: var(--secondary-shades-700) !important;
}

.color-secondary-600 {
  color: var(--secondary-shades-600) !important;
}

.color-secondary-500 {
  color: var(--secondary-shades-500) !important;
}

.color-secondary-400 {
  color: var(--secondary-shades-400) !important;
}

.color-secondary-300 {
  color: var(--secondary-shades-300) !important;
}

.color-secondary-200 {
  color: var(--secondary-shades-200) !important;
}

.color-secondary-100 {
  color: var(--secondary-shades-100) !important;
}

.color-secondary-50 {
  color: var(--secondary-shades-50) !important;
}

.color-grey-900 {
  color: var(--grey-shades-900) !important;
}

.color-grey-800 {
  color: var(--grey-shades-800) !important;
}

.color-grey-700 {
  color: var(--grey-shades-700) !important;
}

.color-grey-600 {
  color: var(--grey-shades-600) !important;
}

.color-grey-500 {
  color: var(--grey-shades-500) !important;
}

.color-grey-400 {
  color: var(--grey-shades-400) !important;
}

.color-grey-300 {
  color: var(--grey-shades-300) !important;
}

.color-grey-200 {
  color: var(--grey-shades-200) !important;
}

.color-grey-100 {
  color: var(--grey-shades-100) !important;
}

.color-grey-50 {
  color: var(--grey-shades-50) !important;
}

:root {
  @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
  --font-family: "Roboto", sans-serif;
  --primary-shades-900: #00483B;
  --primary-shades-800: #006E60;
  --primary-shades-700: #007F70;
  --primary-shades-600: #008F80;
  --primary-shades-500: #009C8E;
  --primary-shades-400: #00ACA0;
  --primary-shades-300: #2EBBB2;
  --primary-shades-200: #75CFC8;
  --primary-shades-100: #ADE1DE;
  --primary-shades-50: #DEF3F2;
  --secondary-shades-900: #212121;
  --secondary-shades-800: #424242;
  --secondary-shades-700: #616161;
  --secondary-shades-600: #757575;
  --secondary-shades-500: #9E9E9E;
  --secondary-shades-400: #BDBDBD;
  --secondary-shades-300: #E0E0E0;
  --secondary-shades-200: #EEEEEE;
  --secondary-shades-100: #F5F5F5;
  --secondary-shades-50: #FEFEFE;
  --accent: linear-gradient(270deg, #008F80 0%, #006E60 100%);
  --sidebar-background: #00483B;
  --sidebar-text-menu: #FEFEFE;
  --sidebar-text-headers: #009C8E;
  --sidebar-spacer: #006E60;
  --sidebar-hover-background: linear-gradient(90deg, #006E60 0%, #008F80 100%);
  --sidebar-hover-text: #ADE1DE;
  --btn-solid-background-default: var(--primary-shades-700);
  --btn-solid-background-hover: #005243;
  --btn-solid-border-default: var(--primary-shades-700);
  --btn-solid-border-hover: #005243;
  --btn-solid-text-default: #fff;
  --btn-solid-text-hover: #fff;
  --btn-outline-background-default: transparent;
  --btn-outline-background-hover: #005243;
  --btn-outline-border-default: var(--primary-shades-700);
  --btn-outline-border-hover: #005243;
  --btn-outline-text-default: var(--primary-shades-700);
  --btn-outline-text-hover: #fff;
  --btn-radius: 0px;
  --btn-text-case: none;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-xs {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 12px;
  line-height: 150%;
}

.text-sm {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 14px;
  line-height: 150%;
}

.text-base {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
}

.text-lg {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 18px;
  line-height: 150%;
}

.text-xl {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 20px;
  line-height: 150%;
}

.text-2xl {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 24px;
  line-height: 150%;
}

.text-3xl {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 30px;
  line-height: 150%;
}

.text-4xl {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 36px;
  line-height: 150%;
}

body {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
  color: var(--grey-shades-900);
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.topnavbar-wrapper {
  border-bottom: 1px solid var(--grey-shades-200);
}
.topnavbar-wrapper .burguer-menu {
  display: none;
}
@media (max-width: 768px) {
  .topnavbar-wrapper .burguer-menu {
    display: block;
  }
  .topnavbar-wrapper .burguer-menu .sidebar-toggle {
    display: flex;
    height: 75px;
    justify-content: center;
    align-items: center;
  }
}
.topnavbar-wrapper .navbar {
  min-height: 75px;
  background-color: #fff;
  background-image: none;
}
.topnavbar-wrapper .navbar .navbar-header {
  width: 228px;
  min-height: 75px;
  background: var(--sidebar-background);
}
@media (max-width: 768px) {
  .topnavbar-wrapper .navbar .navbar-header {
    width: 100%;
  }
}
.topnavbar-wrapper .navbar .navbar-header .brand-logo {
  text-align: left;
  padding: 12px 16px 12px 28px;
  border-bottom: 1px solid var(--sidebar-spacer);
}
.topnavbar-wrapper .navbar .navbar-header .brand-logo img {
  height: 51px;
  max-width: 100px;
  object-fit: contain;
  width: auto;
}
.topnavbar-wrapper .navbar-nav {
  padding: 0px 20px;
}
@media (max-width: 768px) {
  .topnavbar-wrapper .navbar-nav {
    padding: 8px 20px;
  }
}
.topnavbar-wrapper .navbar-nav .searchbar {
  display: inline-flex;
}
.topnavbar-wrapper .navbar-nav .searchbar #search_option {
  border-radius: 8px 0px 0px 8px;
  background-color: var(--grey-shades-100);
  width: 100px;
}
.topnavbar-wrapper .navbar-nav .searchbar #to-search {
  border-radius: 0px;
  margin-left: -1px;
  margin-right: -1px;
  width: 375px;
}
.topnavbar-wrapper .navbar-nav .searchbar #btnMainSearch {
  border-radius: 0px 8px 8px 0px;
  background: var(--primary-shades-500);
  border: 1.5px solid var(--primary-shades-500);
}
.topnavbar-wrapper .navbar-nav .searchbar #btnMainSearch:hover {
  background: var(--primary-shades-700);
}
.topnavbar-wrapper .navbar-nav.actionbar .nav-link {
  color: #000;
  font-size: 20px;
  padding: 8px;
}
@media (min-width: 768px) {
  .topnavbar-wrapper .navbar {
    flex-wrap: nowrap;
  }
  .topnavbar-wrapper .navbar .navbar-header {
    flex-shrink: 0;
  }
}
@media (max-width: 999px) {
  .topnavbar-wrapper .searchbar {
    width: 350px;
  }
}

.wrapper .aside-container {
  width: auto;
}
.wrapper .aside-container .aside-inner {
  padding-top: 75px;
  width: 228px;
}
.wrapper .aside-container .aside-inner .sidebar {
  background: var(--sidebar-background);
  max-width: 100%;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) {
  padding: 16px;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) .nav-heading {
  border-top: 1px solid var(--sidebar-spacer);
  color: var(--sidebar-text-headers);
  font-size: 14px;
  font-weight: 400;
  padding: 16px 0px 8px 0px;
  margin-top: 16px;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li > a {
  border-radius: 8px;
  color: var(--sidebar-text-menu);
  transition: all 0.25s ease-out;
  padding: 12px;
  margin-bottom: 4px;
  line-height: 150%;
  display: flex;
  align-items: center;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li > a em {
  width: 24px;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li > a[data-toggle]::after {
  content: "\f078";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  position: absolute;
  right: 8px;
  font-size: 10px;
  transition: all 0.25s ease-out;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li a.active,
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li > a[aria-expanded=true],
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li > a:hover {
  border-radius: 8px;
  background: var(--sidebar-hover-background);
  color: var(--sidebar-hover-text);
  transition: all 0.25s ease-out;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li > a[aria-expanded=true]::after {
  transition: all 0.25s ease-out;
  transform: rotate(-180deg);
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li .sidebar-subnav {
  background: transparent;
  padding: 0px;
  margin-bottom: 8px;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li .sidebar-subnav li a {
  padding: 8px 12px 8px 36px;
  white-space: normal;
  color: var(--sidebar-text-menu);
  line-height: 150%;
  transition: all 0.25s ease-out;
}
.wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li .sidebar-subnav li a.active, .wrapper .aside-container .aside-inner .sidebar .sidebar-nav:not(.sidebar-subnav) > li .sidebar-subnav li a:hover {
  background: var(--sidebar-background);
  transition: all 0.25s ease-out;
  color: var(--sidebar-text-menu);
  text-decoration: underline;
}

.doko.login .wrapper {
  background-image: url("/static/login-bg.png");
  background-size: cover;
  background-position: center bottom;
}
.doko.login .wrapper > .row {
  min-height: 100vh;
  padding: 40px 80px;
}
@media (max-width: 768px) {
  .doko.login .wrapper > .row {
    padding: 20px;
  }
}
.doko.login .wrapper > .row h1 {
  color: #fff;
}
.doko.login .wrapper > .row .card {
  padding: 32px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
}
.doko.login .wrapper > .row .card .card-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0px;
}
.doko.login .wrapper > .row .card .card-body .logo {
  width: auto;
  max-width: 168px;
  display: block;
  margin: 0 auto;
}
.doko.login .wrapper > .row .card .card-body .form-group {
  margin-bottom: 16px;
}
.doko.login .wrapper > .row .card .card-body .btn {
  margin-top: 16px;
}

.doko .row {
  margin-left: -8px;
  margin-right: -8px;
}
.doko .row [class*=col-] {
  padding-right: 8px;
  padding-left: 8px;
}
.doko .m-0 {
  margin: 0;
}

.doko .alert {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px !important;
}
.doko .alert.alert-info {
  background-color: var(--status-primary-background) !important;
  border-color: var(--status-primary-background) !important;
  color: var(--status-primary-text) !important;
}
.doko .alert.alert-warning {
  background-color: var(--status-warning-background) !important;
  border-color: var(--status-warning-background) !important;
  color: var(--status-warning-text) !important;
}
.doko .alert.alert-error, .doko .alert .alert-danger {
  background-color: var(--status-error-background) !important;
  border-color: var(--status-error-background) !important;
  color: var(--status-error-text) !important;
}
.doko .alert.alert-success {
  background-color: var(--status-success-background) !important;
  border-color: var(--status-success-background) !important;
  color: var(--status-success-text) !important;
}
.doko button {
  opacity: 1;
  color: inherit;
}

.doko .form-group {
  margin-bottom: 16px;
}
.doko .form-group label {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 14px;
  line-height: 150%;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
}
.doko .form-group label .asterisk {
  color: var(--status-error-text);
}
.doko input[type=text],
.doko input[type=password],
.doko input[type=email],
.doko input[type=number],
.doko input[type=tel],
.doko input[type=search] {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
  height: 40px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--grey-shades-400);
  color: var(--grey-shades-900);
  background: var(--grey-shades-50);
}
.doko input[type=text]:focus,
.doko input[type=password]:focus,
.doko input[type=email]:focus,
.doko input[type=number]:focus,
.doko input[type=tel]:focus,
.doko input[type=search]:focus {
  border: 1px solid var(--primary-shades-900);
  outline: none;
  box-shadow: none;
}
.doko input[type=text]::placeholder,
.doko input[type=password]::placeholder,
.doko input[type=email]::placeholder,
.doko input[type=number]::placeholder,
.doko input[type=tel]::placeholder,
.doko input[type=search]::placeholder {
  color: var(--grey-shades-600);
}
.doko input[type=text].sm,
.doko input[type=password].sm,
.doko input[type=email].sm,
.doko input[type=number].sm,
.doko input[type=tel].sm,
.doko input[type=search].sm {
  height: 32px;
  padding: 8px;
}
.doko textarea {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
  padding: 8px 16px;
  border: 1px solid var(--grey-shades-400);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: var(--grey-shades-900);
  background: var(--grey-shades-50);
  resize: none;
}
.doko textarea:focus {
  border: 1px solid var(--primary-shades-900);
  outline: none;
  box-shadow: none;
}
.doko textarea::placeholder {
  color: var(--grey-shades-600);
}
.doko select {
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  padding: 8px 26px 8px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 8px;
  border: 1px solid var(--grey-shades-400);
  color: var(--grey-shades-900);
  background: var(--grey-shades-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill='%23757575' d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: right 16px center;
}
.doko select:focus {
  border: 1px solid var(--primary-shades-900);
  outline: none;
  box-shadow: none;
}
.doko select.default {
  color: var(--grey-shades-600);
}
.doko select.selected {
  color: var(--grey-shades-900);
}
.doko select.open {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill='%23757575' d='M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h256c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z'/%3E%3C/svg%3E"); /* Imagen de flecha hacia arriba */
}
.doko select.sm {
  height: 32px;
  padding: 8px;
  font-size: 12px;
}
.doko select option {
  color: var(--grey-shades-900) !important;
}
.doko .input-group input {
  border-right: 0;
}
.doko .input-group .input-group-text {
  display: flex;
  align-items: center;
  border: 1px solid var(--grey-shades-400);
  background: var(--grey-shades-400);
  color: var(--grey-shades-50);
  cursor: pointer;
}
.doko input[type=radio],
.doko input[type=checkbox] {
  border: 1px solid var(--secondary-shades-300);
  accent-color: var(--primary-shades-700);
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
}
.doko .bootstrap-filestyle input {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}
.doko .bootstrap-filestyle .group-span-filestyle label.btn-outline {
  color: var(--btn-outline-text-default) !important;
}
.doko .bootstrap-filestyle .group-span-filestyle label.btn-outline:hover {
  color: var(--btn-outline-text-hover) !important;
}

.doko.footer-container {
  height: auto;
  padding: 0;
  background: var(--grey-shades-200);
  border-top: 1px solid var(--grey-shades-300);
  z-index: 200;
}
.doko.footer-container .card-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: var(--grey-shades-200);
  padding: 16px;
}

.doko .card {
  border-radius: 8px;
  border-top: 1.5px solid var(--secondary-shades-200);
  border-right: 1.5px solid var(--secondary-shades-200);
  border-bottom: 1.5px solid var(--secondary-shades-200);
  border-left: 1.5px solid var(--secondary-shades-200);
  background: var(--grey-shades-50);
}
.doko .card.card-primary {
  border-top: 8px solid var(--secondary-shades-200);
}
.doko .card .card-body {
  padding: 32px;
}
.doko .card .card-body.pb-16 {
  padding-bottom: 16px;
}
.doko .card.card-margin-xl {
  margin-bottom: 2rem;
}
.doko .table-card-body {
  padding: 16px 32px;
}

.doko .custom-table .header {
  color: var(--grey-shades-900) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  padding: 8px 16px !important;
  background-color: var(--grey-shades-200) !important;
  border: 1.5px solid var(--grey-shades-400) !important;
}
.doko .custom-table th {
  border: 1.5px solid var(--grey-shades-400) !important;
}
.doko .custom-table td {
  text-align: center;
  vertical-align: middle;
  border: 1.5px solid var(--grey-shades-400) !important;
}
.doko .custom-table label {
  font-weight: 500;
}
.doko .custom-table .form-check-inline {
  margin-right: 0;
}
.doko .custom-table .first-column {
  width: 25%;
}
.doko .custom-table .dark-background {
  background-color: var(--grey-shades-200) !important;
  color: var(--grey-shades-900) !important;
}
.doko .custom-table .light-background {
  background-color: var(--grey-shades-100) !important;
  color: var(--grey-shades-900) !important;
}

.focus-datatable tr:has(.dropdown-menu.show) {
  position: relative;
  z-index: 2;
}

.dataTables_scroll .dataTables_scrollBody:has(.dropdown-menu.show) {
  padding-bottom: 1000px;
  margin-bottom: -1000px;
}

.doko {
  /* Estiliza la pista de la barra de desplazamiento (parte donde se mueve el indicador) */
  /* Estiliza el indicador de la barra de desplazamiento (la parte que se desplaza) */
  /* Estiliza el indicador de la barra de desplazamiento al pasar el mouse */
}
.doko tbody {
  position: relative;
}
.doko [class*=focus-datatable-doko] {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.doko [class*=focus-datatable-doko] thead .search-row .dtfc-fixed-right {
  position: sticky;
  right: 0px;
}
.doko [class*=focus-datatable-doko] tbody tr:hover td {
  background-color: rgba(245, 245, 245, 0.5);
  transition: background-color 0.3s ease;
}
.doko table.dataTable {
  margin-top: 0px !important;
}
.doko .dataTables_wrapper .dataTables_filter, .doko .dataTables_wrapper .dt-buttons, .doko .dataTables_wrapper .dataTables_paginate, .doko .dataTables_wrapper .dataTables_info {
  display: none;
}
.doko .dropdown-toggle::after {
  content: none !important;
}
.doko .dataTables_info {
  padding-top: 0 !important;
}
.doko .dataTables_filter input {
  margin-left: 0;
  padding: 8px 16px 8px 34px;
  position: relative;
  width: 100%;
}
.doko .dt-buttons {
  gap: 8px;
}
.doko .separation-top {
  border-top: 1.5px solid var(--secondary-shades-200);
}
.doko .status-indicator {
  padding: 11px;
  border-radius: 8px;
  border: 1px solid var(--grey-shades-400);
}
.doko .legend-container {
  gap: 80px;
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 14px;
  line-height: 150%;
}
.doko .table-pagination-container {
  margin-top: 16px !important;
  padding: 16px 0px;
}
.doko .table-pagination-container .dataTables_paginate .pagination {
  margin: 0;
}
.doko .table-pagination-container .dataTables_paginate .pagination .page-item:first-child .page-link {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}
.doko .table-pagination-container .dataTables_paginate .pagination .page-item:last-child .page-link {
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}
.doko .table-pagination-container .dataTables_paginate .pagination .page-link {
  border: 1.5px solid var(--grey-shades-400);
  color: var(--grey-shades-500);
  background-color: var(--grey-shades-50);
  outline: none;
  transition: 0.5s ease-out;
  width: 64px;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
}
.doko .table-pagination-container .dataTables_paginate .pagination .page-link:focus {
  box-shadow: none;
}
.doko .table-pagination-container .dataTables_paginate .pagination .page-link:hover, .doko .table-pagination-container .dataTables_paginate .pagination .active .page-link {
  background-color: var(--primary-shades-800);
  color: var(--grey-shades-50);
}
.doko table[sticky=true][class*=focus-datatable-doko] td:first-child,
.doko table[sticky=true][class*=focus-datatable-doko] th:first-child {
  position: relative !important;
}
.doko th, .doko td {
  white-space: nowrap !important;
}
.doko th {
  background: var(--primary-shades-50) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: var(--secondary-shades-700) !important;
}
.doko td {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: var(--grey-shades-800) !important;
}
.doko .dataTables_scroll, .doko .dataTables_scrollBody {
  padding-bottom: 5px;
}
.doko .background-tr-default {
  background: var(--grey-shades-50);
}
.doko table.dataTable thead .sorting::after,
.doko table.dataTable thead .sorting::before,
.doko table.dataTable thead .sorting_asc::after,
.doko table.dataTable thead .sorting_asc::before,
.doko table.dataTable thead .sorting_desc::after,
.doko table.dataTable thead .sorting_desc::before {
  content: "";
}
.doko table.dataTable thead .sorting::after,
.doko table.dataTable thead .sorting_asc::after,
.doko table.dataTable thead .sorting_desc::after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-shades-500);
  opacity: 1;
  bottom: auto;
}
.doko table.dataTable thead .sorting::after {
  content: "\f885";
}
.doko table.dataTable thead .sorting_asc::after {
  content: "\f885";
}
.doko table.dataTable thead .sorting_desc::after {
  content: "\f884";
}
.doko .dataTables_scrollBody::-webkit-scrollbar {
  width: 8px; /* Ancho de la barra de desplazamiento horizontal */
  height: 8px; /* Altura de la barra de desplazamiento vertical, ajusta según sea necesario */
}
.doko .dataTables_scrollBody::-webkit-scrollbar-track {
  background: transparent; /* Fondo transparente */
}
.doko .dataTables_scrollBody::-webkit-scrollbar-thumb {
  background: var(--secondary-shades-500); /* Color rojo para el indicador */
  border-radius: 8px; /* Bordes redondeados para el indicador */
}
.doko .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-shades-500); /* Color más oscuro de rojo al pasar el mouse */
}
.doko .dataTables_scrollHead .dtfc-fixed-right,
.doko .dataTables_scrollBody .dtfc-fixed-right {
  background: #fff !important;
  box-shadow: 0 0px 0 transparent inset, 1.5px 0 0 var(--secondary-shades-200) inset;
}
.doko .dtfc-fixed-right:has(.dropdown.show) {
  z-index: 2;
}
.doko .dtfc-right-top-blocker {
  width: 0px !important;
}
.doko .dataTables_scrollHead th {
  position: relative;
  border-top: 1.5px solid var(--secondary-shades-200) !important;
  border-left: 1.5px solid var(--secondary-shades-200) !important;
  border-right: 1.5px solid var(--secondary-shades-200) !important;
  padding: 8px 40px 8px 16px !important;
}
.doko .dataTables_scrollHead th:first-child {
  border-left: 0 !important;
}
.doko .dataTables_scrollHead th:last-child {
  border-right: 0 !important;
  border-left: 0 !important;
}
.doko .dataTables_scrollHead .focus-datatable-doko[sticky=true] th:nth-last-child(2) {
  border-right: 0 !important;
}
.doko .dataTables_scrollBody th {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 1.5px solid var(--secondary-shades-200) !important;
  border-right: 1.5px solid var(--secondary-shades-200) !important;
  padding: 0px 40px 0px 16px !important;
}
.doko .dataTables_scrollBody td {
  border-top: 1.5px solid var(--secondary-shades-200) !important;
  border-bottom: 1.5px solid var(--secondary-shades-200) !important;
  border-left: 1.5px solid var(--secondary-shades-200) !important;
  border-right: 1.5px solid var(--secondary-shades-200) !important;
  padding: 8px 16px !important;
  background-color: inherit;
}
.doko .dataTables_scrollBody th:first-child, .doko .dataTables_scrollBody td:first-child {
  border-left: 0 !important;
}
.doko .dataTables_scrollBody th:last-child, .doko .dataTables_scrollBody td:last-child {
  border-right: 0 !important;
  border-left: 0 !important;
}
.doko .dataTables_scrollBody .focus-datatable-doko[sticky=true] th:nth-last-child(2), .doko .dataTables_scrollBody .focus-datatable-doko[sticky=true] td:nth-last-child(2) {
  border-right: 0 !important;
}
.doko .dataTables_scrollBody .focus-datatable-doko[sticky=true] td {
  padding: 8px 16px;
}

.doko#popup .modal-footer {
  border-top: 0;
}
.doko#popup .modal-body, .doko#popup .modal-footer {
  padding: 32px;
}
.doko#popup i.popup-cerrar {
  color: var(--grey-shades-500);
  font-size: 16px;
  cursor: pointer;
}

.doko .doko-accordion-button {
  padding: 16px 32px;
  background-color: #fff;
  border-radius: 8px;
  border: 1.5px solid var(--secondary-shades-200);
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.doko .doko-accordion-button.collapsed {
  border-bottom: 1.5px solid var(--secondary-shades-200);
  border-radius: 8px;
}
.doko .doko-accordion-collapse {
  border: 1.5px solid var(--secondary-shades-200);
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.doko .doko-accordion-body {
  padding: 32px;
  background-color: #fff;
}

.doko .btn {
  box-sizing: border-box;
  border-radius: var(--btn-radius);
  display: inline-flex;
  height: 40px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
  line-height: 110%;
  font-weight: 500;
  font-size: 16px;
  text-transform: var(--btn-text-case);
  text-decoration: none !important;
}
.doko .btn:focus {
  outline: none;
  box-shadow: none;
}
.doko .btn.sm {
  padding: 4px 16px;
  font-size: 14px;
  height: 32px;
}
.doko .btn-icon-only {
  width: 40px;
}
.doko .btn-icon {
  color: var(--secondary-shades-300);
}
.doko i.fa-solid {
  cursor: pointer;
  color: var(--btn-solid-background-default);
}
button .doko i.fa-solid {
  cursor: unset;
  color: unset;
}
.doko button i.fa-solid {
  cursor: auto;
  color: inherit;
}
.doko .btn-solid {
  background: var(--btn-solid-background-default);
  border: 1.5px solid var(--btn-solid-border-default);
  color: var(--btn-solid-text-default);
  transition: all 0.25s ease-out;
}
.doko .btn-solid.active, .doko .btn-solid:hover {
  background: var(--btn-solid-background-hover);
  border: 1.5px solid var(--btn-solid-border-hover);
  color: var(--btn-solid-text-hover);
  cursor: pointer;
  transition: all 0.25s ease-out;
}
.doko .focus-datatable-doko .btn-outline {
  background-color: #fff;
}
.doko .btn-outline {
  color: var(--btn-outline-text-default);
  border: 1.5px solid var(--btn-outline-border-default);
  background: var(--btn-outline-background-default);
  transition: all 0.25s ease-out;
}
.doko .btn-outline.active, .doko .btn-outline:hover {
  color: var(--btn-outline-text-hover);
  border: 1.5px solid var(--btn-outline-border-hover);
  background: var(--btn-outline-background-hover);
  cursor: pointer;
}
.doko .btn-outline.danger {
  color: var(--btn-danger);
  border: 1.5px solid var(--btn-danger);
  background: transparent;
}
.doko .btn-outline.danger:hover {
  color: var(--btn-danger-hover);
  border: 1.5px solid var(--btn-danger-hover);
  background-color: transparent;
}
.doko .btn-outline.icon-only {
  width: 40px;
  height: 40px;
}
.doko .btn-outline.icon-only i {
  color: var(--btn-outline-text-default);
}
.doko .btn-outline.icon-only:hover i {
  color: var(--btn-outline-text-hover);
}
.doko .btn-outline.icon-only.danger i {
  color: var(--btn-danger);
}
.doko .btn-outline.icon-only.danger:hover {
  background-color: var(--btn-danger);
}
.doko .btn-outline.icon-only.danger:hover i {
  color: #fff;
}
.doko .btn-outline-terciary {
  color: var(--grey-shades-900);
  border: 1.5px solid var(--grey-shades-400);
  transition: all 0.25s ease-out;
}
.doko .btn-outline-terciary.active, .doko .btn-outline-terciary:hover {
  color: var(--grey-shades-900);
  border: 1.5px solid var(--grey-shades-900);
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.doko.doko-tabs .card {
  border-radius: 4px;
}
.doko.doko-tabs .list-group, .doko.doko-tabs .nav {
  border: 0;
  border-radius: 0;
}
.doko.doko-tabs .list-group .list-group-item, .doko.doko-tabs .list-group .nav-link, .doko.doko-tabs .nav .list-group-item, .doko.doko-tabs .nav .nav-link {
  padding: 12px 24px;
  color: var(--primary-shades-500);
  font-size: 16px;
  font-weight: 400;
}
.doko.doko-tabs .list-group .list-group-item:hover, .doko.doko-tabs .list-group .nav-link:hover, .doko.doko-tabs .nav .list-group-item:hover, .doko.doko-tabs .nav .nav-link:hover {
  background-color: var(--grey-shades-100);
}
.doko.doko-tabs .list-group .list-group-item.active, .doko.doko-tabs .list-group .nav-link.active, .doko.doko-tabs .nav .list-group-item.active, .doko.doko-tabs .nav .nav-link.active {
  background-color: var(--grey-shades-200);
  border-color: var(--grey-shades-200);
  color: var(--primary-shades-800);
  font-weight: 500;
}
.doko.doko-tabs .list-group .list-group-item.active:hover, .doko.doko-tabs .list-group .nav-link.active:hover, .doko.doko-tabs .nav .list-group-item.active:hover, .doko.doko-tabs .nav .nav-link.active:hover {
  background-color: var(--grey-shades-200);
}

.hidden {
  visibility: hidden;
}

.content-heading {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  margin: 0 !important;
  padding: 4px 0px 24px 0px !important;
}

.wrapper, .section-, .content-wrapper, .content-heading {
  background-color: var(--grey-shades-100) !important;
}

@media (min-width: 768px) {
  .wrapper .section-container, .wrapper .footer-container {
    margin-left: 228px;
  }
}
nav.sidebar::-webkit-scrollbar {
  display: none;
}

nav.sidebar {
  scrollbar-width: none;
}

.searchbar #btnMainSearch {
  color: var(--btn-solid-text-hover);
}

a, a:hover {
  color: var(--primary-shades-700);
}

.doko.footer-container {
  z-index: 1000;
}

.footer-content-doko .card-footer {
  display: none;
}

.doko .dropdown-menu,
.wrapper > .dropdown-menu {
  padding: 0;
  border-radius: var(--btn-radius);
  border: 1px solid var(--primary-shades-200);
  background: var(--grey-shades-50);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  max-height: 208px;
  overflow-y: overlay;
}
.doko .dropdown-menu.no-fixed-height,
.wrapper > .dropdown-menu.no-fixed-height {
  max-height: none;
  overflow-y: visible;
}
.doko .dropdown-menu .dropdown-divider,
.wrapper > .dropdown-menu .dropdown-divider {
  border-top: 1.5px solid var(--secondary-shades-200);
  margin: 0;
}
.doko .dropdown-menu .dropdown-item, .doko .dropdown-menu .btn,
.wrapper > .dropdown-menu .dropdown-item,
.wrapper > .dropdown-menu .btn {
  color: var(--primary-shades-500);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: var(--btn-radius);
  cursor: pointer;
}
.doko .dropdown-menu .dropdown-item:hover, .doko .dropdown-menu .dropdown-item.active, .doko .dropdown-menu .btn:hover, .doko .dropdown-menu .btn.active,
.wrapper > .dropdown-menu .dropdown-item:hover,
.wrapper > .dropdown-menu .dropdown-item.active,
.wrapper > .dropdown-menu .btn:hover,
.wrapper > .dropdown-menu .btn.active {
  color: var(--primary-shades-800);
  background: var(--grey-shades-50);
}
.doko .dropdown-menu::-webkit-scrollbar,
.wrapper > .dropdown-menu::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.doko .dropdown-menu::-webkit-scrollbar-track,
.wrapper > .dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.doko .dropdown-menu::-webkit-scrollbar-thumb,
.wrapper > .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--secondary-shades-500);
  border-radius: 8px;
}
.doko .dropdown-menu::-webkit-scrollbar-thumb:hover,
.wrapper > .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-shades-500);
}

.doko .dropdown-menu-terciary,
.wrapper > .dropdown-menu-terciary {
  border: 1px solid var(--grey-shades-200);
}
.doko .dropdown-menu-terciary .dropdown-item, .doko .dropdown-menu-terciary .btn,
.wrapper > .dropdown-menu-terciary .dropdown-item,
.wrapper > .dropdown-menu-terciary .btn {
  color: var(--grey-shades-500);
}
.doko .dropdown-menu-terciary .dropdown-item:hover, .doko .dropdown-menu-terciary .btn:hover,
.wrapper > .dropdown-menu-terciary .dropdown-item:hover,
.wrapper > .dropdown-menu-terciary .btn:hover {
  color: var(--grey-shades-800);
  background: var(--grey-shades-50);
}

.doko .bootstrap-tagsinput {
  padding: 0 !important;
  border: 0 !important;
  display: flex;
  align-items: center;
}
.doko .bootstrap-tagsinput .tag {
  background-color: var(--btn-solid-background-default) !important;
  padding: 8px 16px;
  font-family: var(--font-family);
  color: var(--grey-shades-900);
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-right: 8px;
}
.doko .bootstrap-tagsinput .tag [data-role=remove]:hover {
  box-shadow: none;
}
.doko .bootstrap-tagsinput input {
  width: auto; /* Ajusta según el diseño, pero evita shrink */
  flex-grow: 1; /* Deja que use el espacio sobrante */
}

.line-divider {
  border-top: 1.5px solid var(--secondary-shades-200);
  margin: 0;
}

.badge {
  padding: 4px 16px;
  border-radius: var(--btn-radius);
  color: #fff;
}

.doko.dashboard-container .dashboard-header {
  border-bottom: 1.5px solid var(--secondary-shades-200);
}
.doko.dashboard-container .dashboard-item {
  border-top: 1.5px solid var(--secondary-shades-200);
}
.doko.dashboard-container .dashboard-item.first-item {
  border-top: none;
}
.doko.dashboard-container .dashboard-item:last-child {
  border-bottom: none;
}
.doko.dashboard-container *::-webkit-scrollbar {
  width: 8px; /* Ancho de la barra de desplazamiento horizontal */
  height: 8px; /* Altura de la barra de desplazamiento vertical, ajusta según sea necesario */
}
.doko.dashboard-container *::-webkit-scrollbar-track {
  background: transparent; /* Fondo transparente */
  border-top: 0;
  border-left: 1.5px solid var(--secondary-shades-200);
  border-right: 0;
  border-bottom: 0;
  border-bottom-right-radius: 8px;
}
.doko.dashboard-container *::-webkit-scrollbar-thumb {
  background: var(--secondary-shades-500); /* Color rojo para el indicador */
  border-radius: 8px; /* Bordes redondeados para el indicador */
}
.doko.dashboard-container *::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-shades-500); /* Color más oscuro de rojo al pasar el mouse */
}
.doko.dashboard-container .disabled-link {
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}
.doko.dashboard-container .color-grey-800 {
  color: var(--grey-shades-800);
}

.doko.modal i.modal-cancel {
  color: var(--grey-shades-900); /* Color negro para los elementos <i> con la clase modal-cancel */
}

body > .datepicker {
  z-index: 9999 !important;
}

.datepicker {
  padding: 0 !important;
}

/*# sourceMappingURL=doko.css.map */
