html {
  min-height: 100%;
}

.dark body {
  --dark: #2a2f32;
  --color: var(--light);
  --input-bg-color: #202123;
  --input-group-bg-color: var(--dark);
  --control-disabled-bg-color: #686868;
  --input-border-color: #00000025;
  --input-border: 1px solid var(--input-border-color);
  --bg-color: #202124;
  --main-bg-color: #292a2d;
}

body {
  --color: var(--dark);
  --input-bg-color: var(--white);
  --input-group-bg-color: var(--white);
  --control-disabled-bg-color: #e9ecef;
  --input-border-color: #ced4da;
  --input-border: 1px solid var(--input-border-color);
  --bg-color: var(--light);
  --main-bg-color: var(--white);

  min-height: 90%;
  font-size: 1rem;
  color: var(--color);
  background-color: var(--bg-color);
}

main {
  margin-left: 50px;
  background-color: var(--main-bg-color);
  margin-top: 63px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.table {
  color: var(--color);
}

.table-hover tbody tr:hover {
  filter: brightness(0.925);
  color: var(--color);
}

.text-primary {
  color: var(--userbckg) !important;
}

.btn-primary {
  background-color: var(--userbckg);
  border-color: var(--userbckg);
}
.btn-primary:hover {
  background-color: var(--userbckg) !important;
  border-color: var(--userbckg) !important;
}
.btn-primary:active {
  background-color: var(--userbckg) !important;
  border-color: var(--userbckg) !important;
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: var(--userbckg) !important;
  border-color: var(--userbckg) !important;
  box-shadow: 0 0 0 0.2rem rgb(var(--userbckg) / 50%) !important;
}

.btn-primary:disabled {
  color: #fff;
  background-color: var(--userbckg) !important;
  border-color: var(--userbckg) !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--userbckg) !important;
  border-color: var(--userbckg) !important;
}

.page-item .page-link {
  color: var(--color);
  background-color: var(--input-bg-color);
  border: var(--input-border);
}

.page-item.disabled .page-link {
  color: var(--color);
  background-color: var(--control-disabled-bg-color);
  border: var(--input-border);
}

.form-group {
  margin-bottom: 0.3rem;
}

.form-control {
  color: var(--color);
  border: var(--input-border);
  background-color: var(--input-bg-color);
}

.form-control:focus {
  color: var(--color);
  border: var(--input-border);
  background-color: var(--input-bg-color);
}

.form-control:disabled,
.form-control:read-only:not(select) {
  background-color: var(--control-disabled-bg-color);
}

.input-group-text,
.input-group-append,
.input-group-prepend {
  background-color: var(--input-group-bg-color);
}

.input-group-append .input-group-text,
.input-group-prepend .input-group-text,
.input-group-append .btn,
.input-group-prepend .btn {
  color: var(--color);
  border: var(--input-border);
}

.modal-content {
  background-color: var(--main-bg-color);
}

.dropdown-menu {
  color: var(--color);
  background-color: var(--main-bg-color);
}

.dropdown-menu .dropdown-item {
  color: var(--color);
  background-color: var(--main-bg-color);
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--bg-color);
}

.dropzone {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dotted rgba(0, 0, 0, 0.3);
}

.form-datalist__search {
  display: flex;
}

.form-datalist__list {
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 0.375rem;
}

.form-datalist__list .dropdown-item {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.dropdown-item.form-datalist-item--selected {
  background-color: var(--bg-color) !important;
}

.form-datalist__search .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-datalist__button {
  background-color: var(--input-group-bg-color);
  border: var(--input-border);
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: var(--color);
}

.form-datalist__button:disabled {
  background-color: var(--control-disabled-bg-color);
  cursor: not-allowed;
}

.datepicker {
  transform: translate(0, 3.1em);
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker .datepicker-days tr td:hover,
.datepicker .datepicker-months tr td span:hover,
.datepicker .datepicker-years tr td span:hover,
.datepicker .datepicker-decades tr td span:hover,
.datepicker .datepicker-centuries tr td span:hover {
  color: var(--color) !important;
  background-color: var(--bg-color) !important;
}

.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
  background-color: var(--userbckg) !important;
  color: var(--color) !important;
}

.list-group-item {
  color: var(--color);
  background-color: var(--bg-color);
}

.nav-tabs {
  border-color: var(--input-border-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--color);
  background-color: var(--bg-color);
}

.nav-tabs .nav-link.active {
  border-color: var(--input-border-color);
}

.btn.btn-outline-dark {
  color: var(--color);
  background-color: var(--bg-color);
  border-color: var(--input-border-color);
}

.card {
  border-color: var(--input-border-color);
  background-color: var(--bg-color);
}

.card-header {
  background-color: var(--bg-color);
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

.importe {
  text-align: right;
}

.cantidad {
  text-align: right;
}

#nav {
  max-height: 50px !important;
}

@media (max-width: 767.98px) {
  #nav .navbar-collapse {
    background-color: var(--main-bg-color);
    padding: 1rem;
    position: relative;
  }
  #nav .navbar-nav {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1rem;
  }
  #nav .navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
  }
  #nav .navbar-nav .dropdown-menu.dropdown-menu-left {
    transform: translateX(calc(-50% + -1rem)) !important;
  }
  #nav #notifications {
    width: 80vw !important;
    transform: translateX(80%) !important;
  }
}
[data-target='#companyModal'] a {
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .form-group.row .row div:first-child {
    margin-bottom: calc(0.187rem + 1px);
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  width: 300px;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-80%);
  z-index: 9;
  /* Behind the navbar */
  padding: 48px 0 0;
  /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  background-color: var(--userbckg) !important;
}

.dark .sidebar {
  background-color: var(--bg-color) !important;
}

.sidebar.show {
  transform: translateX(0);
}
.sidebar.show .sidebar-sticky .nav-link {
  padding: 0.5rem 1rem;
  visibility: visible;
}
.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  /* Scrollable contents if viewport is shorter than content. */
}
.sidebar-sticky ul {
  list-style: none;
}
.sidebar-sticky .nav-link {
  display: grid;
  padding-right: 0;
  padding-left: 0;
  grid-template-columns: 80% 20%;
  transition: all 0.3s ease;
  visibility: hidden;
}
.sidebar-sticky .nav {
  flex-wrap: nowrap;
}
.sidebar-sticky .nav-link#openSidebar {
  visibility: visible;
}
@supports (position: -webkit-sticky) or (position: sticky) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}
.sidebar .nav-link {
  font-weight: 500;
  color: #fff !important;
}
.sidebar .nav-link.active {
  color: #17a2b8 !important;
}
.sidebar .nav-link .feather {
  margin: auto;
  color: #999;
}
.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Accordeon */
.nav-item.accordion .accordion-panel {
  display: none;
  position: relative;
  list-style: none;
  padding-left: 1rem;
  background: var(--userbckg) !important;
}

/* Navbar */
.navbar {
  background-color: var(--main-bg-color);
  color: var(--color);
}
.navbar .nav-link {
  color: var(--color) !important;
}
.navbar-brand {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--color) !important;
}
.navbar.fixed-top {
  z-index: 10 !important;
}
#navbarUser {
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
#navbarUser svg {
  margin-left: 0.3rem;
}
#navbarUser::after {
  display: none;
}
@media (min-width: 768px) {
  .navbar-nav .nav-item.text-nowrap {
    margin-left: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }
  .navbar-nav .nav-item.text-nowrap span {
    margin-right: 8px;
    color: rgba(0, 0, 0, 0.5);
  }
  .navbar-nav .nav-item.text-nowrap a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    background: #cecece;
    font-weight: 800;
  }
  .navbar-nav .nav-item.text-nowrap .nav-link {
    color: #383838;
  }
  .navbar-nav .my-company-link {
    border-right: 1px solid #cececeed;
  }
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.table-header .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#notifications-counter {
  display: none;
  position: absolute;
  top: -5px;
  right: -5px;
  color: #dc3545;
  font-weight: bold;
}

#notifications ul {
  overflow-y: scroll;
}

#notifications ul a {
  color: var(--color) !important;
}

/* width */
#notifications ul::-webkit-scrollbar,
.sidebar-sticky::-webkit-scrollbar,
.form-datalist__list::-webkit-scrollbar,
#search ul::-webkit-scrollbar {
  width: 5px;
}

/* Track */
#notifications ul::-webkit-scrollbar-track,
.sidebar-sticky::-webkit-scrollbar-track,
.form-datalist__list::-webkit-scrollbar-track,
#search ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
#notifications ul::-webkit-scrollbar-thumb,
.sidebar-sticky::-webkit-scrollbar-thumb,
.form-datalist__list::-webkit-scrollbar-thumb,
#search ul::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
#notifications ul::-webkit-scrollbar-thumb:hover,
.sidebar-sticky::-webkit-scrollbar-thumb:hover,
.form-datalist__list-webkit-scrollbar-thumb:hover,
#search ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#notifications li {
  display: flex;
  align-items: center;
}

#notifications svg {
  cursor: pointer;
  margin-left: 1rem;
  justify-self: end;
}

#notifications a:hover {
  text-decoration: none;
}

#notifications a span:nth-child(1) {
  color: var(--color);
  font-weight: 600;
}
#notifications a span:nth-child(2) {
  color: #262626;
  font-size: 12px;
}

.dark #notifications a span:nth-child(2) {
  color: var(--light);
  font-size: 12px;
}

#notifications a small {
  line-height: 18px;
  color: var(--gray);
}

.menu-user,
#notifications {
  display: none;
  position: absolute;
  top: 55px;
  right: 1%;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0.3rem rgba(0, 0, 0, 0.1);
  background-color: var(--main-bg-color);
}
.menu-user .nav-link {
  color: #000000;
}
.menu-user .nav-link:hover {
  color: #007bff;
}

/* Alert messsage */
#msg {
  position: fixed;
  z-index: 1000;
  top: 9%;
  left: 50%;
  transform: translateX(-50%);
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  margin-bottom: 0 !important;
  /* Hide default HTML checkbox */
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #2196f3;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* The slider */
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* Rounded sliders */
}
.switch .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

/* Modal */
.modal {
  z-index: 2000;
}
.modal-backdrop {
  z-index: 1029;
}

/* Autocomplete component */
.auto-complete-filter {
  position: absolute;
  z-index: 1;
  height: 150px;
  border: 1px solid #a8a8a8;
  overflow-y: scroll;
  background-color: #fff;
}
.auto-complete-filter table {
  background-color: #fff;
}

/* Modal filter */
button.modal-filter {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  color: #999999;
  background-color: transparent;
  border: none;
  transition: color 0.3s ease;
  outline: none;
}
button.modal-filter:hover {
  color: #666666;
}

*[data-uppercase] {
  text-transform: uppercase;
}

#search {
  position: relative;
  min-width: 33vw;
}

#search .nav {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0.3rem rgb(0 0 0 / 10%);
  background-color: var(--main-bg-color);
  max-height: 50vh;
  overflow-y: scroll;
}

#search .nav-item {
  display: block;
  width: 100%;
}

#search .nav-link {
  cursor: pointer;
}

/* Table styles */
td.col-1,
th.col-1 {
  width: 8.33333%;
}

td.col-2,
th.col-2 {
  width: 16.66667%;
}

td.col-3,
th.col-3 {
  width: 25%;
}

td.col-4,
th.col-4 {
  width: 33.33333%;
}

td.col-5,
th.col-5 {
  width: 41.66667%;
}

td.col-6,
th.col-6 {
  width: 50%;
}

td.col-7,
th.col-7 {
  width: 58.33333%;
}

td.col-8,
th.col-8 {
  width: 66.66667%;
}

td.col-9,
th.col-9 {
  width: 75%;
}

td.col-10,
th.col-10 {
  width: 83.33333%;
}

td.col-11,
th.col-11 {
  width: 91.66667%;
}

td.col-12,
th.col-12 {
  width: 100%;
}

td.col-sm-1,
th.col-sm-1 {
  width: 8.33333%;
}

td.col-sm-2,
th.col-sm-2 {
  width: 16.66667%;
}

td.col-sm-3,
th.col-sm-3 {
  width: 25%;
}

td.col-sm-4,
th.col-sm-4 {
  width: 33.33333%;
}

td.col-sm-5,
th.col-sm-5 {
  width: 41.66667%;
}

td.col-sm-6,
th.col-sm-6 {
  width: 50%;
}

td.col-sm-7,
th.col-sm-7 {
  width: 58.33333%;
}

td.col-sm-8,
th.col-sm-8 {
  width: 66.66667%;
}

td.col-sm-9,
th.col-sm-9 {
  width: 75%;
}

td.col-sm-10,
th.col-sm-10 {
  width: 83.33333%;
}

td.col-sm-11,
th.col-sm-11 {
  width: 91.66667%;
}

td.col-sm-12,
th.col-sm-12 {
  width: 100%;
}

td.col-md-1,
th.col-md-1 {
  width: 8.33333%;
}

td.col-md-2,
th.col-md-2 {
  width: 16.66667%;
}

td.col-md-3,
th.col-md-3 {
  width: 25%;
}

td.col-md-4,
th.col-md-4 {
  width: 33.33333%;
}

td.col-md-5,
th.col-md-5 {
  width: 41.66667%;
}

td.col-md-6,
th.col-md-6 {
  width: 50%;
}

td.col-md-7,
th.col-md-7 {
  width: 58.33333%;
}

td.col-md-8,
th.col-md-8 {
  width: 66.66667%;
}

td.col-md-9,
th.col-md-9 {
  width: 75%;
}

td.col-md-10,
th.col-md-10 {
  width: 83.33333%;
}

td.col-md-11,
th.col-md-11 {
  width: 91.66667%;
}

td.col-md-12,
th.col-md-12 {
  width: 100%;
}

td.col-lg-1,
th.col-lg-1 {
  width: 8.33333%;
}

td.col-lg-2,
th.col-lg-2 {
  width: 16.66667%;
}

td.col-lg-3,
th.col-lg-3 {
  width: 25%;
}

td.col-lg-4,
th.col-lg-4 {
  width: 33.33333%;
}

td.col-lg-5,
th.col-lg-5 {
  width: 41.66667%;
}

td.col-lg-6,
th.col-lg-6 {
  width: 50%;
}

td.col-lg-7,
th.col-lg-7 {
  width: 58.33333%;
}

td.col-lg-8,
th.col-lg-8 {
  width: 66.66667%;
}

td.col-lg-9,
th.col-lg-9 {
  width: 75%;
}

td.col-lg-10,
th.col-lg-10 {
  width: 83.33333%;
}

td.col-lg-11,
th.col-lg-11 {
  width: 91.66667%;
}

td.col-lg-12,
th.col-lg-12 {
  width: 100%;
}

td.col-xl-1,
th.col-xl-1 {
  width: 8.33333%;
}

td.col-xl-2,
th.col-xl-2 {
  width: 16.66667%;
}

td.col-xl-3,
th.col-xl-3 {
  width: 25%;
}

td.col-xl-4,
th.col-xl-4 {
  width: 33.33333%;
}

td.col-xl-5,
th.col-xl-5 {
  width: 41.66667%;
}

td.col-xl-6,
th.col-xl-6 {
  width: 50%;
}

td.col-xl-7,
th.col-xl-7 {
  width: 58.33333%;
}

td.col-xl-8,
th.col-xl-8 {
  width: 66.66667%;
}

td.col-xl-9,
th.col-xl-9 {
  width: 75%;
}

td.col-xl-10,
th.col-xl-10 {
  width: 83.33333%;
}

td.col-xl-11,
th.col-xl-11 {
  width: 91.66667%;
}

td.col-xl-12,
th.col-xl-12 {
  width: 100%;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #dcecfc; /* Choose your own color here*/
}

.widget {
  margin-bottom: 10px;
}

.widget-footer {
  height: 35px;
  padding-top: 7px;
  text-align: center;
}

.widget-content {
  font-size: 20px;
  font-weight: bold;
  min-height: 80px;
  padding-top: 30px;
  text-align: center;
}

.widget1footer {
  background-color: #3f51b5;
  color: #ffffff;
}

.widget1content {
  background-color: #5f75f0;
  color: white;
}

.widget2footer {
  background-color: #f11515;
  color: #ffffff;
}

.widget2content {
  background-color: #fa5656;
  color: white;
}

.widget3footer {
  background-color: #4caf50;
  color: #ffffff;
}

.widget3content {
  background-color: #82da86;
  color: white;
}

.widget4footer {
  background-color: #ffa000;
  color: #ffffff;
}

.widget4content {
  background-color: #ffbd4f;
  color: white;
}

/* tablas informes */

.table-informe {
  position: relative;
  width: 100% !important;
  overflow-x: auto;
  /*order-collapse: collapse;*/
  background-color: #ffffff;
}

.table-informe thead {
  position: relative;
  display: block; /*seperates the header from the body allowing it to be positioned*/
  width: 100% !important;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #222;
}

.table-informe thead th {
  position: relative;
  background-color: #ffffff;
  min-width: 120px;
  width: 100% !important;
  height: 42px;
}

.table-informe thead th:nth-child(1) {
  /*first cell in the header*/
  position: relative;
  width: 100% !important;
  min-width: 120px;
  display: block; /*seperates the first cell in the header from the header*/
  background-color: #ffffff;
  height: 42px;
}

.table-informe tbody {
  position: relative;
  display: block; /*seperates the tbody from the header*/
  width: 100% !important;
  height: 450px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.table-informe td {
  position: relative;
  min-width: 120px;
  width: 100% !important;
  padding-top: 3px;
  padding-bottom: 3px;
}

.table-informe tbody tr td:nth-child(1) {
  /*the first cell in each tr*/
  position: relative;
  width: 100% !important;
  min-width: 120px;
  display: block; /*seperates the first column from the tbody*/
}

.table-informe tfoot {
  position: relative;
  display: block;
  width: 100% !important;
  overflow-y: scroll;
  overflow-x: hidden;
  /* overflow-x:auto; */
  border: 1px solid #222;
}

.table-informe tfoot th {
  min-width: 120px;
  width: 100% !important;
  color: MIDNIGHTBLUE;
  /* border: 1px solid #222; */
}

.table-informe tfoot tr th :nth-child(1) {
  /*the first cell in each tr*/
  position: relative;
  display: block; /*seperates the first column from the tbody*/
  min-width: 120px;
  width: 100% !important;
  height: 30px;
}

.table-informe > tbody > tr:nth-child(odd) > td,
.table-informe > tbody > tr:nth-child(odd) > th {
  background-color: #dcecfc; /* Choose your own color here*/
}

.col-xs-offset-right-12 {
  margin-right: 100%;
}
.col-xs-offset-right-11 {
  margin-right: 91.66666667%;
}
.col-xs-offset-right-10 {
  margin-right: 83.33333333%;
}
.col-xs-offset-right-9 {
  margin-right: 75%;
}
.col-xs-offset-right-8 {
  margin-right: 66.66666667%;
}
.col-xs-offset-right-7 {
  margin-right: 58.33333333%;
}
.col-xs-offset-right-6 {
  margin-right: 50%;
}
.col-xs-offset-right-5 {
  margin-right: 41.66666667%;
}
.col-xs-offset-right-4 {
  margin-right: 33.33333333%;
}
.col-xs-offset-right-3 {
  margin-right: 25%;
}
.col-xs-offset-right-2 {
  margin-right: 16.66666667%;
}
.col-xs-offset-right-1 {
  margin-right: 8.33333333%;
}
.col-xs-offset-right-0 {
  margin-right: 0;
}
@media (min-width: 768px) {
  .col-sm-offset-right-12 {
    margin-right: 100%;
  }
  .col-sm-offset-right-11 {
    margin-right: 91.66666667%;
  }
  .col-sm-offset-right-10 {
    margin-right: 83.33333333%;
  }
  .col-sm-offset-right-9 {
    margin-right: 75%;
  }
  .col-sm-offset-right-8 {
    margin-right: 66.66666667%;
  }
  .col-sm-offset-right-7 {
    margin-right: 58.33333333%;
  }
  .col-sm-offset-right-6 {
    margin-right: 50%;
  }
  .col-sm-offset-right-5 {
    margin-right: 41.66666667%;
  }
  .col-sm-offset-right-4 {
    margin-right: 33.33333333%;
  }
  .col-sm-offset-right-3 {
    margin-right: 25%;
  }
  .col-sm-offset-right-2 {
    margin-right: 16.66666667%;
  }
  .col-sm-offset-right-1 {
    margin-right: 8.33333333%;
  }
  .col-sm-offset-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .col-md-offset-right-12 {
    margin-right: 100%;
  }
  .col-md-offset-right-11 {
    margin-right: 91.66666667%;
  }
  .col-md-offset-right-10 {
    margin-right: 83.33333333%;
  }
  .col-md-offset-right-9 {
    margin-right: 75%;
  }
  .col-md-offset-right-8 {
    margin-right: 66.66666667%;
  }
  .col-md-offset-right-7 {
    margin-right: 58.33333333%;
  }
  .col-md-offset-right-6 {
    margin-right: 50%;
  }
  .col-md-offset-right-5 {
    margin-right: 41.66666667%;
  }
  .col-md-offset-right-4 {
    margin-right: 33.33333333%;
  }
  .col-md-offset-right-3 {
    margin-right: 25%;
  }
  .col-md-offset-right-2 {
    margin-right: 16.66666667%;
  }
  .col-md-offset-right-1 {
    margin-right: 8.33333333%;
  }
  .col-md-offset-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-offset-right-12 {
    margin-right: 100%;
  }
  .col-lg-offset-right-11 {
    margin-right: 91.66666667%;
  }
  .col-lg-offset-right-10 {
    margin-right: 83.33333333%;
  }
  .col-lg-offset-right-9 {
    margin-right: 75%;
  }
  .col-lg-offset-right-8 {
    margin-right: 66.66666667%;
  }
  .col-lg-offset-right-7 {
    margin-right: 58.33333333%;
  }
  .col-lg-offset-right-6 {
    margin-right: 50%;
  }
  .col-lg-offset-right-5 {
    margin-right: 41.66666667%;
  }
  .col-lg-offset-right-4 {
    margin-right: 33.33333333%;
  }
  .col-lg-offset-right-3 {
    margin-right: 25%;
  }
  .col-lg-offset-right-2 {
    margin-right: 16.66666667%;
  }
  .col-lg-offset-right-1 {
    margin-right: 8.33333333%;
  }
  .col-lg-offset-right-0 {
    margin-right: 0;
  }
}

/* tablas informes sin mantener 1 col */

.table-informe2 {
  position: relative;
  width: 100% !important;
  overflow-x: auto;
  /*order-collapse: collapse;*/
  background-color: #ffffff;
}

.table-informe2 thead {
  position: relative;
  display: block; /*seperates the header from the body allowing it to be positioned*/
  width: 100% !important;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #222;
}

.table-informe2 thead th {
  position: relative;
  background-color: #ffffff;
  min-width: 120px;
  width: 100% !important;
  height: 42px;
}

.table-informe2 thead th:nth-child(1) {
  width: 120px;
}

.table-informe2 thead th:nth-child(2) {
  min-width: 300px;
}

.table-informe2 tbody {
  position: relative;
  display: block; /*seperates the tbody from the header*/
  width: 100% !important;
  height: 450px;
  overflow: scroll;
  overflow-x: hidden;
}

.table-informe2 td {
  position: relative;
  min-width: 120px;
  width: 100% !important;
  padding-top: 3px;
  padding-bottom: 3px;
}

.table-informe2 td:nth-child(1) {
  width: 120px;
}
.table-informe2 td:nth-child(2) {
  min-width: 300px;
}

.table-informe2 tfoot {
  position: relative;
  display: block;
  width: 100% !important;
  overflow: scroll;
  /* overflow-x:auto; */
  overflow-x: hidden;
  border: 1px solid #222;
}

.table-informe2 tfoot th {
  min-width: 120px;
  width: 100% !important;
  color: MIDNIGHTBLUE;
  /* border: 1px solid #222; */
}

.table-informe2 tfoot th:nth-child(1) {
  width: 120px;
}
.table-informe2 tfoot th:nth-child(2) {
  min-width: 300px;
}

.table-informe2 > tbody > tr:nth-child(odd) > td,
.table-informe2 > tbody > tr:nth-child(odd) > th {
  background-color: #dcecfc; /* Choose your own color here*/
}

.table td.fit,
.table th.fit {
  white-space: nowrap;
  width: 1%;
}

.docs li {
  max-width: 235px;
  margin-bottom: 1.5rem;
}

.docs li .preview {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 0px;
  margin-bottom: 7px;
  padding-top: 63.8%;
  background-color: rgb(246, 246, 246);
  border-radius: 2px;
}

@media only screen and (min-width: 1280px) {
  .docs li .preview {
    padding-top: 138px;
  }
}

.docs li .preview figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 2px;
}

.docs li .preview figure img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
}

.docs li .preview figure img[src^='data:image'] {
  width: 50px;
}

.docs li p {
  line-height: normal;
  color: rgb(158, 167, 184);
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0.3rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .modal-dialog:not(.modal-md) {
    max-width: 1140px;
  }
}

.card .btnImagen {
  height: 350px;
}
