.table-wrapper {
  
  /* Bottom scrollbar */
  overflow: auto;
  height: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: #C9C8C8 #F1F1F1;

  &::-webkit-scrollbar-track {
    background-color: #F1F1F1;
    border-radius: 10px;
  }

  &::-webkit-scrollbar {
    height: 5px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #C9C8C8;
    border-radius: 10px;
  }

  .table {
    border-collapse: collapse;
    display: table;
    overflow: auto;
    table-layout: fixed;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
