.product-ingredients-specs {
    padding: 30px 0;
  
    h3 {
      font-family: 'BrownStd';
      font-weight: 700;
      font-size: 28px;
      line-height: 34px;
      text-transform: uppercase;
      color: #162547;
      margin-bottom: 20px;
    }
  
    .subheading,
      ul li {
        font-family: 'Roboto';
        font-weight: 300;
        font-size: 16px;
        line-height: 145%;
        letter-spacing: 0.02em;
        color: #1A1A1A;
      }
  
    .ingredients-column {
      @media only screen and (max-width: 767px) {
        margin-bottom: 40px;
      }
  
      ul {
        li {
          padding: 15px 0;
          position: relative;
          &:before {
            content: '';
            position: absolute;
            top: 0;
            height: 2px;
            border-radius: 2px;
            width: 25px;
            background-color: #1DB3B9;
            left: 0;
            right: 0;
            margin: auto;
          }
        }
      }
  
    }
  
    .specifications-column {
      max-width: 50%;
      margin: 0px auto;
      width: 100%;
      @media only screen and (max-width: 1024px) {
        max-width: 100%;
      }
      .rules-wrapper {
        display: flex;
        justify-content: space-between;
        @media only screen and (max-width: 1024px) {
          flex-direction: column;
        }
      }
  
      .inner-container {
        width: calc(50% - 10px);
        padding: 20px;
        @media only screen and (max-width: 1024px) {
          width: 100%;
          margin-bottom: 20px;
        }
        
        &.dos {
          background: #D2F0F1;
  
          ul {
            padding-left: 20px;
            li {
              list-style-image: url(/cdn/shop/files/ico-check.svg?v=1712130224);
              margin-bottom: 15px;
            }
          }
        }
  
        &.donts {
          background: #F9F9F9;
  
          ul {
            padding-left: 20px;
            li {
              margin-bottom: 15px;
              list-style-image: url(/cdn/shop/files/ico-close.svg?v=1712130302);;
            }
          }
        }
  
        .heading {
          font-family: 'Univers Next Pro', sans-serif;
          font-weight: 700;
          font-size: 16px;
          line-height: 145%;
          letter-spacing: 0.02em;
          color: #162547;
        }
  
        ul {
          padding-left: 20px;
          li {
            margin-bottom: 15px;
          }
        }
      }
    }
    
  }