/* SINGLE WASH SECTION
============================ */
#singleWash{
    padding: 5%;
    background-color: #F8F9FA;
  }
  table {
    /* border: 1px solid #ccc; */
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    filter: drop-shadow(1px 2px 7px rgba( 0, 0, 0, 0.25 ));
  }
  
  table tr {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: .35em;
  }
  table tr:last-child {
    border-bottom: none;
  }
  tbody tr td:first-child{
    font-size: 1.2rem;
    font-family: var(--font-family-headings);
  }
  tbody tr td:nth-child(2){
    text-transform: capitalize;
  }
  tbody tr td:last-child{
    font-size: 1.2rem;
  }
  
  tr:last-child td:first-child { 
    border-bottom-left-radius: 32px; 
  }
  tr:last-child td:last-child { 
    border-bottom-right-radius: 32px; 
  }
  
  table th,
  table td {
    padding: .625em;
    text-align: center;
  }
  table td span{
    font-size: 1rem;
  }
  table th {
    font-size: 1.2rem;
    font-family: var(--font-family-headings);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: #FE0204;
    color: #fff;
  }
  
  table th:first-child{
    border-top-left-radius: 32px;
  }
  table th:last-child{
    border-top-right-radius: 32px;
  }
  
  @media screen and (max-width: 600px) {
    table {
      border: 0;
      filter: drop-shadow(1px 2px 3px rgba( 0, 0, 0, 0.25 ));
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      /* border-bottom: 3px solid #ddd; */
      display: block;
      margin-bottom: .625em;
      border-radius: 32px;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
  
    table td:last-child {
      border-bottom: 0;
    }
    
    table #washPlan{
      text-align: center;
    }
  }
  /* DETAIL PLAN SECTION
  ============================ */
  #detailPlans{
    padding: 5%;
    background-color: #333;
  }
  table {
    /* border: 1px solid #ccc; */
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    filter: drop-shadow(1px 2px 7px rgba( 0, 0, 0, 0.25 ));
  }
  
  table tr {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: .35em;
  }
  table tr:last-child {
    border-bottom: none;
  }
  tbody tr td:first-child{
    font-size: 1.2rem;
    font-family: var(--font-family-headings);
  }
  tbody tr td:nth-child(2){
    text-transform: capitalize;
  }
  tbody tr td:last-child{
    font-size: 1.2rem;
  }
  
  tr:last-child td:first-child { 
    border-bottom-left-radius: 32px; 
  }
  tr:last-child td:last-child { 
    border-bottom-right-radius: 32px; 
  }
  
  table th,
  table td {
    padding: .625em;
    text-align: center;
  }
  table td span{
    font-size: 1rem;
  }
  #detailPlans table th {
    font-size: 1.2rem;
    font-family: var(--font-family-headings);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: #dfdfdf;
    color: #333;
  }
  
  table th:first-child{
    border-top-left-radius: 32px;
  }
  table th:last-child{
    border-top-right-radius: 32px;
  }
  
  @media screen and (max-width: 600px) {
    table {
      border: 0;
      filter: drop-shadow(1px 2px 3px rgba( 0, 0, 0, 0.25 ));
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      /* border-bottom: 3px solid #ddd; */
      display: block;
      margin-bottom: .625em;
      border-radius: 32px;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
  
    table td:last-child {
      border-bottom: 0;
    }
    
    table #washPlan{
      text-align: center;
    }
    tr:last-child td:first-child{
      border-bottom-left-radius: 0px;
    }
  }