body {
  color: var(--bs-dark);
  background-color: #FFF;
  font-family: system-ui;
}
.header-global .navbar {
    position: relative;
    z-index: 999;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 15%);
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1, .btn, .nav {
  font-family: system-ui;
}
.container-fluid {
    padding-right: var(--bs-gutter-x, 2rem);
    padding-left: var(--bs-gutter-x, 2rem);
}

table {
    border: 1px solid #e1e4e8;
    font-size: .9rem;
}
table thead {
    background-color: #f1f8ff;
    border: 1px solid #c8e1ff;
}
table tbody tr {
    border: 1px solid #e1e4e8;
}
thead, tbody, tfoot, tr, td, th {
    border-style: none;
}

.text-yellow { color: #ffef00 !important; }
.text-violet { color: #a100ff !important; }

.bg-light {
    background-color: #f7f7f7 !important;
}
.bg-info {
    background-color: #e4f1fb !important;
}
.bg-success {
    background-color: #eaf7e2 !important;
}
.bg-danger {
    background-color: #ffebeb !important;
}

.btn {
    font-weight: 700;
    border-radius: 4px;
    font-size: .9rem;
}
.btn-sm {
    padding: 3px 6px;
    font-size: 11px;
    line-height: 16px;
    border-radius: 3px;
}
.form-select, .form-control {
    font-size: .85rem;
    font-weight: 400;
    border-radius: 4px;
}
.btn-success {
    background-color: #2ea44f;
    border-color: #2b9149;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  z-index: 99999999;
}

.bootstrap-tagsinput {
	width: 100%;
}

/* SELECT PARA BUSCADOR */

.select2-container .select2-selection--single {
	height: 34px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
    font-size: .85rem;
    font-weight: 400;
    border-radius: 4px;
}
.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px !important;
}
.select2-container--default .select2-selection--single {
  border-radius: 4px !important;
}
.select2-results__option {
    font-size: 14px;
}

.nav-tabs { 
    border: 0; 
}
.nav-tabs .nav-link {
    margin: 0 4px -1px;
    background: transparent;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    font-weight: 700;
    border-top: 3px solid var(--bs-primary);
}

@media (max-width: 575px) {
  body {
    padding-top: 0;
  }
  .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* CARDS */

.board {
    display: block;
    padding: 1.5rem 0;
    white-space: nowrap;
    overflow-x: auto;
    /*height: calc(100vh - 175px);*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.kanban-board:not(:last-child) {
    margin-right: 1rem;
}

.kanban-board {
    position: relative;
    display: inline-block;
    width: 22%;
    vertical-align: top;
    background-color: #f6f8fa;
    border-radius: 6px;
    padding: 8px;
    
    height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}

.kanban-board header {
    font-size: 16px;
    margin-bottom: .25rem;
    padding: 0 .25rem;
}

.kanban-board header .kanban-title-board {
    font-weight: 700;
}

.kanban-board .kanban-drag {
    padding: 6px .25rem;
    min-height: 200px
}

.kanban-item {
    padding: 12px 15px 15px;
    background: #FFF;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #e1e4e8;
    position: relative;
    box-shadow: 1px 1px 5px #e1e4e8;
}

.kanban-item .kanban-title {
    font-weight: 600;
    font-size: 15px;
    color: inherit;
    text-decoration: none;
}

.kanban-item .kanban-edit {
    font-size: 13px;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    right: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
}

.kanban-item:hover .kanban-edit {
    opacity: 1!important;
}

/*     HTML legend    */
.html-legend {
  list-style: none;
  cursor: pointer;
  padding-left: 0;
  text-align: center;
  margin-top: 1rem; 
}

.html-legend li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
  margin-right: 5px;
  margin-bottom: 6px;
  color: #8d9498;
  font-size: 12px; 
}

.html-legend li.hidden {
  text-decoration: line-through; 
}

.html-legend li span {
  border-radius: 15px;
  display: inline-block;
  height: 15px;
  margin-right: 10px;
  width: 15px;
  vertical-align: top; 
}

.wrap-text {
	white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    white-space: pre-wrap;       /* css-3 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    white-space: -webkit-pre-wrap; /* Newer versions of Chrome/Safari*/
    word-break: break-all;
    white-space: normal;
}