body {
    /*font-size: .875rem;*/
}

.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
    font-size:20px;
    /*font-weight: 500;*/
    color: #333;
}

    .sidebar .nav-link .feather {
        margin-right: 4px;
        color: #727272;
    }

    .sidebar .nav-link.active {
        color: #2470dc;
    }

        .sidebar .nav-link:hover .feather,
        .sidebar .nav-link.active .feather {
            color: inherit;
        }

.sidebar-heading {
    /*font-size: .75rem;*/
    text-transform: uppercase;
}

/*
 * Navbar
 */

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

    .form-control-dark:focus {
        border-color: transparent;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
    }

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.navbar .navbar-brand {
    font-size: 30px;
    padding-left: 0;
    padding-right: 50px;
}

    .navbar .navbar-brand b {
        font-weight: bold;
        color: #9229c6;
    }

.navbar .form-inline i {
    font-size: 16px;
}

.navbar .form-inline .btn {
    border-radius: 2px;
    color: #fff;
    border-color: #9229c6;
    background: #9229c6;
    outline: none;
}

.navbar .navbar-right .dropdown-toggle::after {
    display: none;
}

.navbar .navbar-right .dropdown-menu {
    width: 505px;
    padding: 20px;
    left: auto;
    right: 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.w-90 {
    width: 90% !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #9229c6;
}
/*
.green {
    background-color: rgb(75, 192, 192);
}

.red {
    background-color: rgb(255, 99, 132);
}

.orange {
    background-color: rgb(255, 159, 64);
}

.grey {
    background-color: rgb(201, 203, 207);
}

.warning {
    background-color: red !important;
}

.badge-violet {
    background-color: #9229c6;
    color: white;
    margin-left: 20px;
}*/

/*supress scroll horiz*/ 
@media screen and (min-width: 1280px) {
    /* Rédigez vos propriétés CSS ici */

    #tableFormated .fixed-table-body {
        overflow-x: hidden !important;
    }
    /*
    #tableFormated .bootstrap-table .table {
      width: calc(100% - 3px) !important;
    }*/
}

.filter {
    font-family: var(--bs-body-font-family);
    display: var(--fa-display,inline-block);
    font-size: var(--bs-badge-font-size);
    font-weight: var(--bs-badge-font-weight);
    line-height: 1;
    text-rendering: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    margin-right: 1rem;
    font-size: 13px;
    font-weight: 500;
    border-radius: 16px;
    transition: opacity .3s linear;
    word-wrap: break-word;
    text-transform: none;
    margin-top: 5px;
    margin-bottom: 5px;
    position:relative;
}

.filter .close:hover {
    color: #262626;
}

.filter .close {
    float: right;
    padding-left: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity .15s linear;
    opacity: .53;
}

.filter span {
    margin-left: 5px;
}

/* Tooltip text */
.filter .tooltiptext {
   visibility: hidden;
  width: 120px;
  background-color: #5559;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  margin-left: -60px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.filter:hover .tooltiptext {
    visibility: visible;
}

