.chip {
    display: inline-block;
    height: 32px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,.6);
    line-height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background-color: #fff;
    margin-bottom: 5px;
    margin-right: 5px;
    cursor: pointer;
    transition: all .3s linear;
  }
  
  .chip-detail {
    display: inline-block;
    height: 32px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,.6);
    line-height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background-color: #eaeaea;
    margin-bottom: 5px;
    margin-right: 5px;
  }
  
  .chip-keyword{
  color: #fff;
  background-color: #038c7c;
  }
  
  .chip:hover {
    transition: all .3s linear;
    background-color: #e0e0e0 !important;
  }
  .waves-effect {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .chip .close {
    cursor: pointer;
    float: right;
    font-size: 16px;
    line-height: 32px;
    padding-left: 8px;
    transition: all .1s linear;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
  }
  
  .bg-grey{
    background: #f2f2f2;
  }

/* Datatables as Cards */

.cards tbody tr {
    /* float: left;
    width: 350px;*/
    margin: 0.5rem; 
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    background: #fff
  }
  
  .cards tbody td {
    display: block;
    border-top: none
  } 
  
  .cards thead {
    display: none;
  }
  
  .cards td:before {
    content: attr(data-label);
    position: relative;
    float: left;
    color: #808080;
    min-width: 4rem;
    margin-left: 0;
    margin-right: 1rem;
    text-align: left;   
  }
  
  .table .col-md-3 {
    padding-right: 0;
    padding-left: 0;
  }
  
  .cards a:hover{
    text-decoration: none;
  }
  
  /* .cards a:hover h5, .cards a:hover span{
    color: #0e60b3
  } */
  
  .cards tr:hover {
    box-shadow: 0.25rem 0.25rem 0.5rem rgb(112 112 112);
    cursor: pointer
  }
  
  .cards tr td:first-child{
    background-position: bottom;
    background-size: cover;
  }
  
  .accordion-toggle:after {
    font-family: "Font Awesome 5 Free";
    content: "\f106";
    font-weight: 900;
    color: grey;
    float:right;
    font-size: 25px
  }
  
  .accordion-toggle.collapsed:after {
    transform: rotate(180deg);
  }
  
  @media (min-width: 768px) {
    .col-md-3 {
        max-width: 23%;
    }
  }
  
  /* //Datatables as Cards */