@keyframes rotating /* Safari and Chrome */ {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes blink {
    from {background-color: yellow;}
    to {background-color: #ff9800;}
  }   

  #tableFilter tr.outdated {
      background-color: #ff9800;
      animation: blink 2s linear infinite;
  }

  
  div::-webkit-scrollbar-track {
      box-shadow: inset 0 0 6px #f8fbff;
      border-radius: 5px;
   }
  
  div::-webkit-scrollbar-thumb {
      background-color: #9fa9bd;
      border-radius: 5px;
  }
  div::-webkit-scrollbar {
      width: 0.5em;
      border-radius: 5px;
  }

  ol li:not(.active) {
      color: black;
      background-color: gray;
      filter: blur(1px);
  }
  
  li.active.current::after {
      content: '\262F';
      /* background-color: red; */
      margin-left: 1rem;
      display: inline-block;
      animation: rotating 2s linear infinite;
  }
  
  li.done::after {
      content: '\2713';
      color: green;
      margin-left: 1rem;
      display: inline-block;
  }
  
  li.error::after {
      content: '\26A0';
      color: red;
      margin-left: 1rem;
      display: inline-block;
  }
  
  li.done {
      text-decoration: underline;
      color: green;
  }
  
  .modal.show .modal-dialog {
      transform: none !important;
  }
  
  .table>thead>tr>th {
      color: #b7242b;
  }
  
  .table>tbody>tr>td {
    color: rgba(255, 255, 255, 0.7);
  }
  #tableOutdated>tbody>tr>td {
      color: rgba(255, 255, 255, 0.9) !important;
  }
  tr.outdated td {
      color: #263238 !important;
  }
  tr.outdated td:nth-child(6):after {
      content: " \1F6C8";
      color: red;
      font-size: large;
  }
  #tableLicenses tr {
      cursor: pointer;
  }

  .tooltipNubi .tooltiptext {
    visibility: hidden;      
    width: 220px;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 0;
    position: fixed;
    z-index: 10000;
    margin-left: -110px;
    transform: translate(-7px, -70px);
    list-style-type: none; 
  }

  .tooltipNubi .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }

  .tooltipNubi:hover .tooltiptext {
    visibility: visible;
  }

  .tooltiptext > div { 
    padding: 0.5rem;
  }
  .LIC_PAYED {
    color: #ff5722;
    float: right;
  }
  .LIC_USING {
    color: #ffeb3b;
    float: right;
  }    
  .toolbar {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #9e9e9e;
  }
  .badge-table {
    line-height: 2;
    width: 6rem;
    text-align: center;
    color: black !important;
  }
  .badge-outdated {
    display: flex;
    align-items: center;
    width: 2rem;
    font-size: 1rem;
    justify-content: center;
    color: #efefef;
  }
  table:not(.table-condensed) > tbody > tr:hover {
      background-color: #37474f;
      cursor: pointer;
  }

  .toolbarLabel {
    border: 2px solid #607d8b;
    border-radius: 10px;
    filter: drop-shadow(2px 4px 6px #607d8b50);
    padding: 0 1rem;
    transition: 400ms;
  }
  .toolbarLabel:hover {
    background-color: #ffffff8a;
    scale: 1.5;
    backdrop-filter: blur(1px);
    z-index: 9999;
  }
  .detailStore {
    border: none;
    /*font-size: xx-large;*/
    width: -webkit-fill-available;
    background: none !important;
    color: #607d8b  !important;
    max-width: 5rem;
  }
  #storeReports li {
    margin-bottom: 0;
    background-color: #25273b;
    border: none;
    border-bottom: 0.0625rem solid #e9ecef;
    color: white;
  }  
  #storeReports li:hover {
    background-color: #37474f;
    cursor: pointer;
  }

  .dropdown-item {
    color: #000000 !important;
  }

  .modal {
    z-index: 2000;
  }

  .sidebar .sidebar-wrapper, .off-canvas-sidebar .sidebar-wrapper {
    overflow: visible;
  }

  .alert-warning {
    z-index: 3000 !important;
  }