@charset "UTF-8";
/* CSS Document */
body {
  font-family: 'lato', sans-serif;
}
.container-table {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

h2 {
  font-size: 26px;
  margin: 20px 0;
  text-align: center;
  small {
    font-size: 0.5em;
  }
}

.container-responsive-table {
  li {
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .container-table-header {
    background-color: #95A5A6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .container-table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  }
  .container-col-1 {
    flex-basis: 10%;
  }
  .container-col-2 {
    flex-basis: 40%;
  }
  .container-col-3 {
    flex-basis: 25%;
  }
  .container-col-4 {
    flex-basis: 25%;
  }
  
  @media all and (max-width: 767px) {
    .container-table-header {
      display: none;
    }
    .container-table-row{
      
    }
    li {
      display: block;
    }
    .container-col {
      
      flex-basis: 100%;
      
    }
    .container-col {
      display: flex;
      padding: 10px 0;
      &:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
      }
    }
  }
}
