.large-screen .card-list-table tbody td {
    border-bottom: 1px solid #dfdfdf;
    
    display: table-cell;
    padding: 8px 10px;
    -webkit-transition: background .2s ease-out;
    transition: background .2s ease-out;
    vertical-align: middle;
	text-align: center;
	font-size: 13px;
}

.large-screen .card-list-table thead th {
	font-size: 15px;
	border-bottom: 1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
}

.table-responsive.card-list-table {
	width: 100%;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-bottom: 50px;
}

.table-wrapper {

  max-height: 300px;
  overflow-y: scroll;
  position: relative;
  transition: all .2s ease-out;
  width: 100%;
  @media(min-width: 768px) {
    background: white;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
  }
}

.mobile .card-list-table {
    table-layout: fixed;
    background: transparent;
    margin-bottom: 0;
    width: 100%;
}
.mobile .card-list-table tbody tr {
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    
    display: block;
    padding: 15px 10px;
    margin: 0 0 10px 0;
}

.mobile .card-list-table tbody td:before {
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    font-size: .85em;
    content: attr(data-title);
    display: table-cell;
    font-weight: 500;
    height: 100%;
    left: 15px;
    margin: auto;
    position: absolute;
    vertical-align: middle;
    white-space: nowrap;
    width: 40%;
}

.mobile .card-list-table tbody td {
    border-bottom: 1px solid #dfdfdf;
    display: block;
    padding: 10px 10px 20px 40%;
    position: relative;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
table th {
text-transform: none;
}
.wrap {
	-webkit-box-direction: normal;
}

.mobile .card-list-table thead {
    display: none;
}
/*
@mixin scrollbars($size, $foreground-color, $background-color: mix($foreground-color, white, 50%)) {
  ::-webkit-scrollbar {
      width:  $size;
      height: $size;
  }

  ::-webkit-scrollbar-thumb {
      background: $foreground-color;
  }

  ::-webkit-scrollbar-track {
      background: $background-color;
  }

  
  body {
    scrollbar-face-color: $foreground-color;
    scrollbar-track-color: $background-color;
  }
}

@include scrollbars(.15em, slategray);

body,
html {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Roboto";
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

body {
  background: #f8f8f8;
}

button.btn {
  box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
  border: 0;
  border-radius: 0px;
  i {
    margin-right: 3px;
  }
}

div.large-screen {
	
  .table-wrapper {
    max-width: 800px;
  }
  
  .card-list-table {
    background: white;
    tbody tr {
      background: transparent;
      box-shadow: none;
      margin: 0;
      &:nth-of-type(even) {
        background: darken(#f8f8f8, 10%);
      }
    }
	
    thead {
      display: table-header-group;
	  
      th:last-child {
        box-shadow: none;
      }
      th {
        border-bottom: 1px solid darken(#f8f8f8, 10%);
        padding: 12px 24px;
      }
    }
	
    tbody {
      tr {
        display: table-row;
        padding-bottom: 0;
        &:nth-of-type(even) {
          background: #fff;
        }
      }
      td {
        border-bottom: 1px solid darken(#f8f8f8, 10%);
        cursor: pointer;
        display: table-cell;
        padding: 20px 24px;
        transition: background .2s ease-out;
        vertical-align: middle;
        &:after {
          display: none;
        }
        &:before {
          content: '';
        }
      }
      tr:hover td {
        background: lighten(#f1c40f, 40%);
      }
    }
  }
}

.buttons {
  margin: 10px 0 50px;
}

.table-wrapper {

  max-height: 500px;
  overflow-y: scroll;
  position: relative;
  transition: all .2s ease-out;
  @media(min-width: 768px) {
    background: white;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
  }
}

.card-list-table {
  table-layout: fixed;
  background: transparent;
  margin-bottom: 0;
  width: 100%;
  thead {
    display: none;
  }
  tbody tr {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
    background: #fff;
    border-bottom: 1px solid darken(#f8f8f8, 10%);
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    margin: 0 0 10px 0;
  }
  tbody td {
    border: 0;
    display: block;
    padding: 10px 10px 20px 40%;
    position: relative;
    &:first-of-type::after {
      visibility: hidden;
    }
    &:after {
      content: '';
      width: calc(100% - 30px);
      display: block;
      margin: 0 auto;
      height: 1px;
      background: darken(#f8f8f8, 10%);
      position: absolute;
      left: 0;
      right: 0;
      top: -6px
    }
    &:before {
      color: rgba(0, 0, 0, .35);
      text-transform: uppercase;
      font-size: .85em;
      content: attr(data-title);
      display: table-cell;
      font-weight: 500;
      height: 100%;
      left: 15px;
      margin: auto;
      position: absolute;
      vertical-align: middle;
      white-space: nowrap;
      width: 40%;
    }
  }
  thead th {
    text-transform: uppercase;
    font-size: .85em;
    color: rgba(0, 0, 0, .35);
    letter-spacing: .5pt;
  }
}*/