@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");
.data-table {
  width: 100%;
  background-color: #FDFDFD;
  font-size: 14px;
  color: #333;
}
.data-table thead {
  background-color: #cccfd1;
}
.data-table thead th {
  text-align: left;
  text-transform: uppercase;
  padding: 8px;
  font-weight: bold;
  color: #000;
  font-size: 14px;
}
.data-table tbody tr:nth-child(even) {
  background-color: #e7e9ea;
}
.data-table tbody td {
  padding: 8px;
  border-bottom: 1px solid #DDD;
}

@media only screen and (max-width: 680px) {
  /* Force tables to not be like tables anymore */
  .responsive-table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .responsive-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .responsive-table td {
    /* Behave  like a "row" */
    border: none;
    position: relative;
    padding-left: 33% !important;
  }

  .responsive-table td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-label);
  }

  .table-hr td:last-of-type:after {
    content: " ";
    height: 2px;
    background: #cbc7c7;
    width: 100%;
    position: absolute;
    top: 98%;
    left: 0;
  }
}
@media only screen and (max-width: 680px) {
  .collapse-table tr.collapse td {
    display: none;
  }
  .collapse-table tr.collapse td:first-of-type {
    display: block !important;
  }
}
.collapse-table td {
  vertical-align: top;
}
.collapse-table td i {
  cursor: pointer;
}
@media only screen and (min-width: 680px) {
  .collapse-table td.collapse img {
    display: none;
  }
}
