/* Responsive Portfolio Table Styles */
.responsive-portfolio-table {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0 auto;
  border-collapse: collapse;
}
.responsive-portfolio-table th, .responsive-portfolio-table td {
  padding: 10px;
  border: 1px solid #ddd;
}
.responsive-portfolio-table thead tr {
  background-color: #3bb54a;
  color: #fff;
}
@media (max-width: 767px) {
  .responsive-portfolio-table, .responsive-portfolio-table thead, .responsive-portfolio-table tbody, .responsive-portfolio-table th, .responsive-portfolio-table td, .responsive-portfolio-table tr {
    display: block;
    width: 100%;
  }
  .responsive-portfolio-table thead {
    display: none;
  }
  .responsive-portfolio-table tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #3bb54a;
  }
  .responsive-portfolio-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: left;
    min-height: 40px;
    box-sizing: border-box;
  }
  .responsive-portfolio-table td:before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 45%;
    white-space: normal;
    font-weight: bold;
    color: #3bb54a;
    content: attr(data-label);
  }
}
