@charset "UTF-8";
/******************************
 *   N1 - Responsive System
 *   version 2410-01
*******************************/
:root {
  --header-bg-color: #295598;
  --header-txtcolor: #fff;
  --header-icon-color: #fff;
  --sidebar-bg-color: #295598;
  --sidebar-txtsize: 0.8rem;
  --sidebar-linkcolor: #fff;
  --sidebar-icon-color: #fff;
  --sidebar-icon-size: 1.5rem;
  --sidebar-icon-display: inline-block;
  --sidebar-bg-color-hover: rgba(255, 255, 255, 0.3);
  --sidebar-bg-color-active: rgba(0, 0, 0, 0.3);
  --submenu-bg-color:#295598;
  --submenu-txtsize: 0.78rem;
  --submenu-linkcolor:#fff;
  --submenu-bg-color-hover: rgba(0, 0, 0, 0.3);
  --bottomsidebar-bg-color: #295598;
  --bottomsidebar-txtcolor: #fff;
  --bottomsidebar-icon-color: #fff;
  --main-bg-color: #f5f5f5;
  --main-txtcolor: #333333;
  --main-linkcolor: #0d6efd;
  --main-title-bg: #295598;
  --main-title-txtcolor: #fff;
  --footer-bg-color: #295598;
  --footer-txtcolor: #fff;
  --footer-linkcolor: #fff;
  --footer-icon-color: #fff;
  --table-striped-bg: #f9f9f9;
  --bs-list-group-item-padding-x:1rem;
  --bs-list-group-item-padding-y:0.5rem;
  --bs-list-group-color:#212529;
  --bs-list-group-bg:#fff;
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-color: #dee2e6;
}

html {
  overflow-y: scroll;
  scroll-behavior: unset;
}

body {
  background-color: var(--main-bg-color);
}
body#system_bsoft {
  font-family: "Titillium Web", Arial, sans-serif;
}

.header {
  color: var(--header-txtcolor);
  background-color: var(--header-bg-color);
  font-size: 0.8rem;
  box-shadow: 0px 1px 3px #000;
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header .navbar-toggler {
  padding: 0.25rem 0.5rem;
}
.header .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: var(--bs-gutter-x, -0.75rem);
}
.header .nav-item {
  margin: 0px 5px;
}
.header .nav-item i {
  font-size: 15px;
  color: var(--header-icon-color);
}
.header .nav-item .n1-ip-access-list {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
}
.header .nav-item .n1-ip-access-list i {
  color: #333333;
  display: inline-block;
  width: 18px;
  text-align: center;
  margin-right: 10px;
}
.header .nav-link {
  padding: 0.2rem 0.5rem !important;
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0);
}
.header .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: solid 1px rgba(255, 255, 255, 0.35);
}
.header span {
  padding: 0.2rem 0.3rem !important;
  border-radius: 4px;
  display: inline-block;
}
@media (min-width: 768px) {
  .header {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header .navbar-nav {
    flex-direction: row;
  }
  .header .nav-link {
    background-color: rgba(21, 21, 21, 0.25);
  }
  .header .n1-ip-access,
  .header .n1-time {
    display: none;
  }
  .header .n1-help {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .header .n1-account-name {
    display: none;
  }
}
@media (max-width: 340px) {
  .header .n1-help {
    display: none;
  }
}

.sidebar {
  position: fixed;
  left: 0px;
  background-color: var(--sidebar-bg-color);
  box-shadow: 1px 0px 4px #000000;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 40px;
  background-image: url(../images/bk-area-menu.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  z-index: 1;
}
.sidebar.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s linear;
  transition-property: height;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.sidebar .navbar-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar .nav-item:hover {
  background-color: var(--sidebar-bg-color-hover);
}
.sidebar .nav-item .active {
  background-color: var(--sidebar-bg-color-active);
}
.sidebar .nav-link {
  color: var(--sidebar-linkcolor);
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  font-size: var(--sidebar-txtsize);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar .nav-link i {
  color: var(--sidebar-icon-color);
  font-size: var(--sidebar-icon-size);
  display: var(--sidebar-icon-display);
}
.sidebar .nav-link b.badge {
  display: var(--sidebar-icon-display);
}
.sidebar .nav-link span {
  vertical-align: super;
  margin-left: 0.75rem;
}
.sidebar .dropdown-toggle::after {
  position: absolute;
  right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  content: "\f105";
  border: none;
  margin-top: 3px;
}
.sidebar .dropdown-item {
  color: var(--submenu-linkcolor);
  font-size: var(--submenu-txtsize);
}
.sidebar .dropdown-item.disabled {
  font-weight: 600;
  font-size: var(--submenu-txtsize);
  background-color: rgba(0, 0, 0, 0.17);
}
.sidebar .dropdown-item.disabled::before {
  content: "⁃";
  margin-right: 5px;
}
.sidebar .dropdown-item.disabled::after {
  content: "⁃";
  margin-left: 5px;
}
.sidebar .dropdown-divider {
  margin: 0.5rem !important;
  border-top: 1px solid white;
}
.sidebar #menu_access_detail {
  display: none;
  bottom: 0px;
  font-size: 11px;
  position: fixed;
  background-color: var(--bottomsidebar-bg-color);
  padding-bottom: 20px;
  width: 340px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px black;
  transition-delay: 0.2s;
  z-index: 50;
}
.sidebar #menu_access_detail .list-group {
  border-radius: 0px;
}
.sidebar #menu_access_detail .list-group-item {
  background-color: transparent;
  color: var(--bottomsidebar-txtcolor);
  border: 1px solid rgba(0, 0, 0, 0);
}
.sidebar #menu_access_detail i {
  color: var(--bottomsidebar-icon-color);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .sidebar {
    top: 40px;
    bottom: 25px;
  }
  .sidebar .navbar-nav {
    width: 160px;
  }
  .sidebar .dropdown-menu {
    background-color: var(--submenu-bg-color);
    min-width: 240px;
    left: 98%;
    top: 0%;
    margin-top: 0;
    border-radius: 0rem;
    border: solid 1px rgba(255, 255, 255, 0.3);
  }
  .sidebar .dropdown-menu .dropdown-toggle {
    margin-top: 0px;
  }
  .sidebar .dropdown-menu .dropdown-toggle::after {
    margin-top: 0px;
  }
  .sidebar .dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 99%;
    top: -7px;
  }
  .sidebar .dropdown-menu > li {
    position: relative;
  }
  .sidebar .dropdown-menu > li:hover {
    background-color: var(--submenu-bg-color-hover);
  }
  .sidebar .dropdown-menu > li:hover > .dropdown-menu,
  .sidebar .dropdown-menu > li:hover > .submenu {
    display: block;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
    top: -7px;
    transform: rotateX(0deg);
  }
  .sidebar .dropdown-menu .dropdown-item.active, .sidebar .dropdown-menu .dropdown-item:active, .sidebar .dropdown-menu .dropdown-item:focus, .sidebar .dropdown-menu .dropdown-item:hover {
    background-color: var(--submenu-bg-color-hover);
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar .navbar-nav {
    width: 80px;
  }
  .sidebar .nav-link {
    text-align: center !important;
  }
  .sidebar .nav-link span {
    display: none;
  }
}
@media (max-width: 767px) {
  .sidebar {
    top: 30px;
    bottom: 0px;
    overflow-y: auto;
    padding-bottom: 120px;
    z-index: 5;
  }
  .sidebar .navbar-nav {
    width: 340px;
  }
  .sidebar .nav-link {
    padding-left: 20px;
  }
  .sidebar .dropdown-toggle::after {
    right: auto;
    left: 310px;
    transform: rotate(90deg);
  }
  .sidebar .dropdown-menu {
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 5px;
    margin-top: 0 !important;
    border-radius: 0;
    background-color: var(--submenu-bg-color);
    border: solid 1px rgba(255, 255, 255, 0.28);
  }
  .sidebar .dropdown-item {
    padding: 0.6rem 1rem;
  }
  .sidebar .dropdown-item.active, .sidebar .dropdown-item:active, .sidebar .dropdown-item:focus, .sidebar .dropdown-item:hover {
    background-color: var(--submenu-bg-color-hover);
  }
  .sidebar .dropdown-item::before {
    content: "◦";
    margin-right: 5px;
  }
  .sidebar .collapsing {
    display: block !important;
  }
  .sidebar #menu_access_detail {
    display: block;
    transition: height 0.35s linear;
  }
}

#system_bsoft .sidebar {
  background-image: url(../images/bk-area-menu-bs.png);
}

.footer {
  font-size: 11px;
  position: fixed;
  height: 25px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  color: var(--footer-txtcolor);
  background-color: var(--footer-bg-color);
  text-align: right;
  padding-top: 3px;
  box-shadow: 0 -1px 3px #000000;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer a {
  color: var(--footer-linkcolor);
}
@media (min-width: 768px) {
  .footer #footer_menu {
    display: none;
  }
}
.footer #footer_menu a {
  text-decoration: none;
}
.footer #footer_menu i {
  color: var(--footer-icon-color);
  font-size: 22px;
  display: block;
  text-align: center;
}
.footer #footer_menu .navbar-nav li {
  border-radius: 4px;
  padding: 5px 5px;
  margin: 0px;
  border: solid 1px rgba(255, 255, 255, 0);
  transition: 0.4s;
}
.footer #footer_menu .navbar-nav li.active, .footer #footer_menu .navbar-nav li:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: solid 1px rgba(255, 255, 255, 0.35);
}
@media (max-width: 767px) {
  .footer.footer-user {
    height: 60px;
  }
  .footer .footer_copyright {
    display: none;
  }
}

.main {
  margin-top: 0px;
  font-size: 0.8rem;
  color: var(--main-txtcolor);
}
@media (min-width: 992px) {
  .main {
    width: calc(98vw - 180px) !important;
    margin-left: 180px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main {
    width: calc(97vw - 100px) !important;
    margin-left: 100px;
  }
}
@media (max-width: 767px) {
  .main {
    font-size: 0.9rem;
  }
}
.main h1,
.main h2,
.main h3,
.main h4 {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 300;
}
.main .h4,
.main h4 {
  font-weight: 400;
  font-size: 1rem;
  padding-left: 0.6rem;
  margin-top: 0.5rem;
}
.main .breadcrumb {
  font-size: 0.7rem;
  padding: 4px 15px;
  background-color: #dedede;
  font-weight: 600;
}
.main .breadcrumb a {
  color: #337ab7;
  text-decoration: none;
}
.main .breadcrumb a:hover {
  text-decoration: underline;
}
.main .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.main i {
  font-size: 1rem;
}
.main .note-editor i {
  font-size: 0.8rem;
}
.main .table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
}
.main .table-responsive::-webkit-scrollbar:vertical {
  width: 10px;
}
.main .table-responsive::-webkit-scrollbar:horizontal {
  height: 10px;
}
.main .table-responsive::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 2px solid #ffffff;
}
.main .table-responsive::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

#system_bsoft .main h1,
#system_bsoft .main h2,
#system_bsoft .main h3,
#system_bsoft .main h4 {
  font-family: "Titillium Web", Arial, sans-serif;
}

.main-admin {
  margin-bottom: 50px;
}
.main-admin .table_title {
  text-align: left;
  padding-top: 2px;
  margin-top: 7px;
  padding-left: 15px;
  border-bottom: solid 3px var(--main-title-bg);
  border-bottom-width: 3px;
}
.main-admin .table_title span {
  margin: 0px;
  font-size: 1rem;
  font-weight: normal;
  padding-right: 15px;
  padding-left: 15px;
  background-color: var(--main-title-bg);
  color: var(--main-title-txtcolor);
  padding-top: 5px;
  padding-bottom: 2px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  min-width: 150px;
  display: inline-block;
}

.main-admin .table_title span {
  font-family: "Open Sans", Arial, sans-serif;
}

#system_bsoft .main-admin .table_title span {
  font-family: "Titillium Web", Arial, sans-serif;
}

.main-user {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .main-user {
    margin-bottom: 80px;
  }
}
.main-user .table_title {
  text-align: left;
  padding-top: 2px;
  margin-top: 7px;
  padding-left: 0px;
  border-bottom: solid 1px #d4d4d4;
  border-bottom-width: 1px;
}
.main-user .table_title span {
  margin: 0px;
  font-size: 1rem;
  font-weight: normal;
  padding-right: 15px;
  padding-left: 15px;
  background-color: #fff;
  color: var(--main-txtcolor);
  padding-top: 12px;
  padding-bottom: 11px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.35);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  display: block;
}
.main-user .box-content h4 {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #eee;
  border: solid 1px #ddd;
}
@media (max-width: 767px) {
  .main-user .box-content h4 {
    background-color: #88caff;
    border: solid 1px #1194ff;
  }
}
.main-user .btn {
  border: 2px solid transparent;
}
.main-user .btn-outline-secondary {
  border-color: #1e90ff;
}
.main-user .accounts-detail h3 {
  font-size: 1.2rem;
}
.main-user .accounts-detail h3,
.main-user .accounts-detail h4 {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
}
.main-user label {
  font-weight: 700;
}

.main-user .table_title span {
  font-family: "Open Sans", Arial, sans-serif;
}

#system_bsoft .main-user .table_title span {
  font-family: "Titillium Web", Arial, sans-serif;
}

#print_reports_header {
  display: none;
}

/* INI GENERAL STYLE IN MAIN **************************************************************/
a.bg-warning:hover {
  background-color: #ffca2c !important;
  border-color: #ffc720 !important;
}

.box-content {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
}

.form-control,
.form-select {
  font-size: 0.8rem;
}

.input-group-text i {
  font-size: 1rem;
}

.input-group .btn {
  z-index: 0;
}

.btn-primary {
  background-color: var(--main-title-bg);
  border-color: var(--main-title-bg);
}

.btn-primary:hover {
  background-color: var(--main-title-bg);
  border-color: #2e2e2e;
  opacity: 0.9;
}

.btn-outline-secondary {
  color: #333;
}

/********** INI For Dashboard ************* */
.toolbar-top {
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  margin-bottom: 10px;
}

.toolbar-bottom-out {
  padding: 6px 10px;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.35);
}

.btn i {
  font-size: 0.875rem;
}

.btn-outline-secondary:hover {
  color: #333;
  background-color: #d1d1d1;
  border-color: #6c757d;
}

.input-group .show_tooltip {
  border: solid 1px #ced4da;
}

.wrapper {
  min-height: 350px;
}

.labels li {
  display: inline-block;
  margin-right: 5px;
}

.labeldescrip {
  display: inline-block;
  border: solid 3px;
  width: 42px;
  height: 14px;
  margin-right: 5px;
  background-color: #ccc;
}

.wrapper {
  min-height: 150px;
}

.lb-md {
  font-size: 95%;
}

.wrapper .col-lg-2,
.wrapper .col-md-3,
.wrapper .col-sm-4 {
  padding-right: 5px;
  padding-left: 10px;
}

.text-resume {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box0 {
  border-right: solid 7px #f5f5f5;
}

.box1 {
  border: solid 1px #ccc;
  padding: 7px;
  margin-right: 6px;
}

.dashboard_area .box-content {
  box-shadow: none;
}

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
  border: none;
}

table.dataTable {
  margin-top: 0px !important;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.25rem;
}

.main .bkheader {
  background-color: #d9e5f9;
  font-weight: 700;
}

.hr-line-space {
  margin: 20px 0;
  height: 1px;
}

.hr-line-dashed {
  border-top: 1px dashed #bdbdbd;
  height: 1px;
  margin: 10px 0;
}

.hr-line-double {
  border-top: 3px double #bdbdbd;
  height: 1px;
  margin: 20px 0;
}

.show_tooltip {
  padding: 2px 4px;
  border: solid 1px #929191;
  border-radius: 4px;
}
.show_tooltip i {
  color: orange;
  font-size: 1rem !important;
}

.help-icon {
  padding: 0.1rem 4px;
}

.input-group-addon {
  color: #fff;
  background-color: #1e90ff;
}

.portfolio-caret-down {
  color: #ff0000;
  font-size: 14px !important;
  text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
  font-weight: bolder;
}

.portfolio-caret-up {
  color: #5cd446;
  font-size: 14px !important;
  text-shadow: 0 0px 1px rgba(0, 0, 0, 0.75);
  font-weight: bolder;
}

.form-group .fa-asterisk {
  font-size: 7px;
  color: red;
}

p.form-control {
  margin: 0;
  overflow: auto;
  overflow-wrap: break-word;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 33px;
}
p[disabled] {
  background-color: #eee;
}

.validar {
  border: 1px solid #ffc107;
  background-color: #fffbec;
}

.list-group {
  margin-bottom: 0px;
}

div.list-group.list-group-striped a:nth-of-type(odd) {
  background: #f1f1f1;
}

div.list-group.list-group-striped a:nth-of-type(even) {
  background: #fff;
}

div.list-group.list-group-hover a:hover {
  background: #eeeeee;
}

kbd.kbd-blue {
  background-color: #2196f3;
}
kbd.kbd-red {
  background-color: #cc0000;
}

.row-striped {
  padding: 2px 0px;
}

@media (min-width: 768px) {
  .row.equal {
    display: flex;
    flex-wrap: wrap;
  }
}
/********** END For Dashboard ************* */
.table thead tr th {
  background-color: #d9e5f9;
}
.table thead tr th i {
  font-size: 0.7rem;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #d1d1d1;
}

.form-inlineblck {
  display: inline-block !important;
  width: auto;
}

.system_request .badge {
  font-size: 0.9em;
  text-decoration: none;
}

.vls {
  background-color: #fff !important;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #fff;
  width: 30px;
  box-shadow: none !important;
}

.localbox {
  background-color: #f7f7f7;
  width: 80px;
  border: solid 1px #ccc;
  float: left;
  font-size: 11px;
  height: 31px;
  border-radius: 3px;
  padding-top: 7px;
}

.card-header a[data-bs-toggle] {
  text-decoration: none;
}
.card-header a[data-bs-toggle]:hover {
  text-decoration: underline;
}

.input-group.date .input-group-text {
  cursor: pointer;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 767px) {
  .visible-xs {
    display: table-cell !important;
  }
}

.accounts-detail {
  margin-bottom: 20px;
}
.accounts-detail h3 {
  color: #0368cb;
}
.accounts-detail h3,
.accounts-detail h4 {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  white-space: nowrap;
}

.row .fa-asterisk {
  font-size: 0.5rem;
  color: red;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}

.to-xs-right h4 {
  background-color: initial !important;
  border: initial !important;
}
@media screen and (max-width: 767px) {
  .to-xs-right {
    text-align: right;
  }
  .to-xs-right h4 {
    font-weight: 600;
  }
}

.line-number-text {
  background: url(../images/line-number-text.png) !important;
  background-attachment: local !important;
  background-repeat: no-repeat !important;
  padding-left: 35px !important;
  padding-top: 10px !important;
  border-color: #ccc;
  font-family: monospace;
  line-height: 1.42857143;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .accounts-detail h3 {
    font-weight: 600;
  }
  .accounts-detail,
  .additional-cols {
    margin-top: 10px;
  }
}
@media screen and (max-width: 450px) {
  .claims-img-responsive {
    max-width: 270px;
  }
}

/* INI - to implement scrolling on very wide tabs */
.wrapper-nav {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px;
  height: 45px;
}
.wrapper-nav .list {
  position: absolute;
  left: 0px;
  top: 0px;
  min-width: 3500px;
  margin-top: 0px;
}
.wrapper-nav .list .list li {
  display: table-cell;
  position: relative;
  text-align: center;
  cursor: grab;
  cursor: -webkit-grab;
  color: #efefef;
  vertical-align: middle;
}
.wrapper-nav .pointer {
  cursor: pointer;
}

.scroller {
  text-align: center;
  cursor: pointer;
  display: inline-block;
  padding: 9px;
  white-space: nowrap;
  vertical-align: middle;
}

.block-scroll {
  overflow: hidden;
  height: 100%;
}

.wt-close-x {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 5px;
}

.text-truncate {
  white-space: nowrap; /* Evitar saltos de línea */
  overflow: hidden; /* Ocultar el contenido que sobresale */
  text-overflow: ellipsis; /* Mostrar puntos suspensivos cuando se recorta el contenido */
  max-width: 30vw; /* Establecer un ancho máximo para la celda de la tabla */
}

.select2-container--bootstrap-5 .select2-selection,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
  font-size: 0.8rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  font-size: 0.8rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: var(--bs-secondary);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search {
  font-size: 0.8rem;
  padding: 6px 0;
}

.text-color-of-sidebar {
  color: var(--sidebar-bg-color);
}

.bg-tarjeta {
  background-image: url("../images/card.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 270px;
  height: 168px;
  color: #fff;
}

/* END - to implement scrolling on very wide tabs */

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