/** Shopify CDN: Minification failed

Line 10:0 Unexpected "{"
Line 10:1 Expected identifier but found "%"
Line 165:0 Unexpected "{"
Line 165:1 Expected identifier but found "%"

**/

{% stylesheet %}
 .clinical-results {
    padding: clamp(30px, 6vw, 90px) 0;
    background: #fff;
}

  .clinical-results__grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:40px;
  }

  /* headings */
 .clinical-title {
    font-weight: 600;
    font-family: 'InterTight SemiBold';
    font-size: clamp(22px,4vw,40px);
    color:#21628E;
    margin-bottom: 20px;
}

  .clinical-desc{
    font-family: var(--font-body-family);
    font-size: clamp(16px,4vw,18px);
    line-height:1.6;
    margin-bottom:24px;
  }

  .clinical-main-title{
    font-size: clamp(24px, 2.3vw, 40px);
    color: #21628E;
    margin-bottom: 18px;
    font-family: 'InterTight SemiBold';
    margin-top: 42px;
  }

  /* table */
  .clinical-table{
    width:100%;
    border-collapse: collapse;
    background:#fff;
  }
  .clinical-table tr{
   border:1px solid #B1B1B1
  }
  .clinical-table td {
    padding: 18px 20px;
}
  .clinical-table th{
       font-size: 22px;
      padding: 10px;
      font-family: 'InterTight SemiBold';
      text-align: left;
      color: #333333;
  }
  .clinical-table th .para {
      color: #000;
      font-size: 15px;
      font-weight: 400;
  }
  tbody tr:nth-child(odd) {
    background-color: #D9D9D940;
}

  /* right side cards */
  .protocol-card{
    background: #D9D9D940;
    border-radius: 20px;
    padding: 20px 40px !important;
    margin-bottom: 16px;
  }

 .protocol-card h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'InterTight SemiBold';
}

 .protocol-card p {
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--font-body-family);
    color: #333;
}

  /* =========================
     TABLET
  ========================= */
  /* =========================
   TABLET (769px – 1024px)
========================= */
@media (max-width:1024px) and (min-width:769px){

  .clinical-results__grid{
    grid-template-columns: 1fr 1fr;
  }

  /* Table column width fix */
  .adults{
    width: 75px;
    min-width: 75px;
  }

  .ped{
    width: 125px;
    min-width: 125px;
  }

  .clinical-table th{
    font-size: 18px;
  }

  .clinical-table td{
    padding: 14px 16px;
  }

}

  /* =========================
     MOBILE
  ========================= */
  @media(max-width:768px){
    .clinical-results__grid{
      grid-template-columns: 1fr;
    }
  
.clinical-table td {
  padding: 10px 10px;
}

   .clinical-table th{
    font-size:18px;
    
   }
   .adults{
    width:75px;
   }
   .ped{
    width:103px;
   }

    .protocol-card{
      padding:16px;
    }
    .clinical-table th .para {
   
    font-size: 10px;
  }
  #shopify-section-template--26105902694719__image_banner_3bzCYd span.rich-text__subheading.subheading {
     
      margin-top: 0;
     
  }
}
{% endstylesheet %}