html {
  font-size: 14px;
}

body {
  background-color: #f2f7ff;
  color: #273853;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8rem;
  font-weight: 500;
}

b, strong {
  /* font-weight: 500; */
  font-weight: bolder;
}

a {
  color: #156ff9;
}

/* start sidebar+content */
.wrapper {
  display: flex;
  width: 100%;
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  transition: all 0.3s;
}

#sidebar.active {
  margin-left: -250px;
}

#content {
  width: calc(100% - 250px);
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

#content.active {
  width: 100%;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }

  #sidebar.active {
    margin-left: 0;
  }

  #content {
    width: 100%;
  }

  #content.active {
    width: calc(100% - 250px);
  }

  #sidebarCollapse span {
    display: none;
  }
}

/* end sidebar+content */
.btn, .input-group-text, .form-control, .form-select {
  border-radius: .6rem;
}

.btn {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.rounded {
  border-radius: .6rem !important;
}

.font-xs, small {
  font-size: 12px;
}

.font-sm {
  font-size: 16px;
}

.font-md {
  font-size: 20px;
}

.font-lg {
  font-size: 24px;
}

.font-xl {
  font-size: 26px;
}

.font-xxl {
  font-size: 48px;
}

.fw-bold {
  font-weight: 600 !important
}

.fw-bolder {
  font-weight: 700 !important
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

table tr td {
  vertical-align: middle;
}

.text-primary {
  color: #156ff9 !important;
}

.bg-primary {
  background-color: #156ff9 !important;
}

.text-secondary {
  color: #2adb92 !important;
}

.bg-secondary {
  background-color: #2adb92 !important;
}

.text-danger {
  color: #f65766 !important;
}

.bg-danger {
  background-color: #f65766 !important;
}

.bg-success {
  background-color: #5aca67 !important;
}

.form_icon i {
  position: absolute;
  top: 15px;
  left: 15px;
}

.form_icon .form-control {
  padding-left: 2.4rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.7rem;
  font-size: 14px;
  border-color: #c9ced3;
}

.createdby {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.shape1 {
  position: absolute;
  right: 0;
  top: 0;
}

.shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.shape1 img, .shape2 img {
  width: 340px;
}

.login-img {
  margin-left: -120px;
  z-index: 9;
}

.login-img img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  /* Safari seems to support, but seems deprecated and does the same thing as the others. */
  image-rendering: -webkit-optimize-contrast;
}

.btn_sidebar {
  background-image: url(/img/toggle-sidebar.svg);
  position: absolute;
  right: -32px;
  width: 32px;
  height: 77px;
  top: 15px;
  padding-left: 6px;
  padding-top: 32px;
  cursor: pointer;
}

.btn_sidebar i.fa-dot-circle {
  display: none;
}

.btn_sidebar i.fa-circle {
  display: block;
}

.active .btn_sidebar i.fa-dot-circle {
  display: block;
}

.active .btn_sidebar i.fa-circle {
  display: none;
}

/*
.btn_sidebar {
  position: absolute;
  right: -30px;
  border-radius: 50%;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  top: 40px;
  border-right: 1px solid;
}

.btn_sidebar::after {
  content: '';
  display: block;
  height: 30px;
  width: 30px;
  border-radius: 50% 0 0 0;
  border-top: 1px solid;
}

.btn_sidebar::before {
  content: '';
  display: block;
  height: 30px;
  width: 30px;
  border-radius: 0 0 0 50%;
  border-bottom: 1px solid;
  margin-top: -30px;
}
*/
.collapse_button {
  position: absolute;
  right: 42px;
  top: 20px;
  display: block;
}

#sidebar a {
  text-decoration: none;
}

.nav-link {
  position: relative;
  padding: 15px 30px;
}

.nav-link .collapse_button i {
  position: absolute;
}

.collapsed.nav-link .collapse_button i.fa-minus {
  display: none;
}

.collapsed.nav-link .collapse_button i.fa-plus {
  display: block;
}

.nav-link .collapse_button i.fa-plus {
  display: none;
}

.bg-color1 {
  background-color: #8fb8f8;
}

.bg-color2 {
  background-color: #9a5ef3;
}

.bg-color3 {
  background-color: #f86cea;
}

.bg-color4 {
  background-color: #66c4dc;
}

.bg-color5 {
  background-color: #ffbf42;
}

.bg-color6 {
  background-color: #e9edf5;
}

.bg-color7 {
  background-color: #f2f7ff;
}

.color1 {
  color: #8fb8f8;
}

.color2 {
  color: #9a5ef3;
}

.color3 {
  color: #f86cea;
}

.color4 {
  color: #66c4dc;
}

.color5 {
  color: #ffbf42;
}

.color6 {
  color: #e9edf5;
}

.color7 {
  color: #f2f7ff;
}

.avatar_letra {
  color: #fff;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  border-radius: 50%;
}

.btn-menu {}

.btn-menu a {
  height: 60px;
  display: block;
  width: 60px;
  text-align: center;
  line-height: 60px;
}

.btn-menu a:hover {
  color: #fff;
  background-color: #8fb8f8;
}

.btn-menu .dropdown-menu {
  min-width: 14rem;
}

.btn-menu hr {
  opacity: 1;
}

/*start:bootstrap edit*/
.border {
  border: 1px solid #e9edf5 !important;
}

.col-form-label, .col-form-content {
  padding-top: calc(0.7rem + 1px);
  padding-bottom: calc(0.7rem + 1px);
}

.form-control.is-valid, .was-validated .form-control:valid {
  border-color: #5aca67;
}

.valid-feedback {
  color: #5aca67;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: #f65766;
}

.invalid-feedback {
  color: #f65766;
}

.form-select {
  padding: .7rem 2.25rem .7rem .7rem
}

.btn-primary {
  background-color: #156ff9;
  border-color: #156ff9;
}

.btn-primary:hover {
  background-color: #1359c5;
  border-color: #1359c5;
}

.btn-secondary {
  background-color: #2adb92;
  border-color: #2adb92;
}

.btn-secondary:hover {
  background-color: #29bd80;
  border-color: #29bd80;
}

.btn-success {
  background-color: #5aca67;
  border-color: #5aca67;
}

.btn-success:hover {
  background-color: #51b75d;
  border-color: #51b75d;
}

.btn-danger {
  background-color: #f65766;
  border-color: #f65766;
}

.btn-danger:hover {
  background-color: #e65361;
  border-color: #e65361;
}

.btn-outline-primary {
  color: #156ff9;
  border-color: #156ff9;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #156ff9;
  border-color: #156ff9;
}

.btn-outline-secondary {
  color: #2adb92;
  border-color: #2adb92;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #2adb92;
  border-color: #2adb92;
}

.btn-outline-success {
  color: #5aca67;
  border-color: #5aca67;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #5aca67;
  border-color: #5aca67;
}

.btn-outline-danger {
  color: #f65766;
  border-color: #f65766;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #f65766;
  border-color: #f65766;
}

/*end:bootstrap edit*/
.menu_tab {
  border-bottom: 2px solid #fff;
}

.menu_tab a {
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  color: #273853;
}

.menu_tab a.active {
  font-weight: 600;
  border-bottom: 2px solid #8fb8f8;
  margin-bottom: -2px;
}

.galeria_btn {
  position: absolute;
  top: 15px;
  left: 15px;
}

.galeria_btn a {
  width: 50px;
  display: inline-block;
  height: 50px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  border: 2px solid;
}

.btn-group-lg>.btn, .btn-lg {
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
}

ul.nav .sidebar_drpdown {
  background-color: #f2f7ff;
}

.logo {
  padding: 30px;
}

.menu_icon {
  width: 25px;
}

.menu_icon i {}

.sidebar_drpdown .nav-link {
  padding-left: 55px;
}

.nav-link, .nav-link .collapse_button i {
  color: #273853;
}

.nav-link i, .nav-link.active, .nav-link:focus, .nav-link:hover {
  color: #156ff9;
}

.mCustomScrollBox, .mCSB_container {
  overflow: inherit !important;
}

.table>:not(caption)>*>* {
  padding: 1rem;
}

tbody, td, tfoot, th, thead, tr {
  border-color: #e9edf5 !important;
}

.badge {
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  font-size: 12px;
}

.click_menu_table i {
  width: 20px;
}

.dropdown-item.active, .dropdown-item:active {
  color: #273853;
  background-color: #e9ecef;
}

.page-link {
  padding: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50% !important;
  border: none;
  margin: 0 !important;
  color: #273853;
}

.page-link.active {
  background: #8fb8f8 !important;
  color: #fff !important;
}

.page-link:hover {
  color: #8fb8f8;
  background-color: transparent;
  border-color: transparent;
}

.btn-outline-light {
  color: #273853;
  background-color: #fff;
  border-color: #c9ced3;
}

.btn-outline-light:hover {
  color: #273853;
  background-color: #f6faff;
  border-color: #c9ced3;
}

.galeria_item .galeria_btn {
  display: none;
}

.galeria_item:hover .galeria_btn {
  display: block;
}

.modal-backdrop.backdrop-modal2 {
  background: #e9edf5;
}

.modal-backdrop.backdrop-modal2.show {
  opacity: 1;
}

.default-form-select {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.table-develona tr:hover {
  box-shadow: 0 0 10px rgba(143, 184, 248, 0.4);
}

.table-develona tfoot tr:hover, .table-develona thead, .table-develona .inner tr:hover {
  box-shadow: none;
}

.tcol-xs {
  width: 40px;
}

.tcol-sm {
  width: 140px;
}

.tcol-md {
  width: 200px;
}

.tcol-lg {
  width: 360px;
}

.btn-check:active+.btn-outline-light, .btn-check:checked+.btn-outline-light, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show, .btn-outline-light:active {
  border-color: #ced4da;
}

.cerrar-modal1 {
  position: absolute;
  right: -30px;
  top: 0;
}

.cerrar-modal2 {
  position: fixed;
  right: 20px;
  top: 20px;
}

.cerrar-modal {
  background: #fff;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
}

.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
}

.form-switch.form-switch-lg .form-check-input {
  height: 2rem;
  width: calc(3rem + 0.75rem);
  border-radius: 4rem;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-move {
  cursor: move;
}

.autocomplete {
  position: fixed !important;
  z-index: 9999;
  overflow: auto;
  box-sizing: border-box;
  min-width: 340px;
}

.autocomplete>div {
  padding: 5px 10px;
}

.autocomplete>div:hover,
.autocomplete>div.selected {
  background: #f1f5f8;
  cursor: pointer;
}

.autocomplete .item .label {
  display: inline-block;
  margin-right: 5px;
}

.autocomplete .item .info {
  display: inline-block;
  font-style: italic;
}

section.dnd section.dnd .item {
  padding-left: 3rem;
}

.dash_block {
  /*min-height: 124px;*/
}

.dash_block i {
  font-size: 140%;
}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 767px) {}



/* Factura */
.factura {
  font-size: 0.975em;
  font-family: Rubik, sans-serif;
  font-weight: 400;
}
.factura footer {

}

.br-short {
  display: block;
  margin-bottom: -4px;
}
.br-medium {
  display: block;
  margin-bottom: 6px;
}
.text-gray{
  color:#6f6f6e;
}
.bg-color8{
  background:#fbfbfb;
}
.table-factura th:first-child, .table-factura tr td:first-child{
  padding-left:0px !important;
}
.table-factura th:last-child, .table-factura tr td:last-child{
  padding-right:0px !important;
}