  * {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  
  
  p, div {
    font-size: 15px;
    color: rgb(84, 89, 95);
    font-weight: normal;
    text-align: left;
    line-height: 22.5px;
  }
  
  b, strong {
    font-weight: bold;
  }
  
  a:link,
  a:visited {
    color: #002849;
    text-decoration: none;
  }
  a:hover,
  a:active {
    color: #54595f;
    text-decoration: none;
  }
  
  #intcss,
  #delcss {
    border: 0x solid red;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    align-items: flex-end;
  }
  
  #intcss .column,
  #delcss .column {
    border: 0px solid blue;
    display: grid;
    grid-template-columns: auto auto;
  }
  
  #intcss .column,
  #delcss .column {
   flex: 1 1 360px;
  }
  
  
  #intcss .column div,
  #delcss .column div {
    border: 0px solid orange;
    padding: 8px 0px 8px 8px;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  
  #delcss .column:first-of-type div:first-of-type,
  #delcss .column:first-of-type div:nth-of-type(2) {
    padding: 0px 0px 0px 8px;
    border: 0px solid orange;
    margin-bottom: 20px;
  }
  
  #intcss .column:first-of-type div:first-of-type,
  #intcss .column:first-of-type div:nth-of-type(2) {
    padding: 0px 0px 0px 8px;
    border: 0px solid orange;
    margin-bottom: 20px;
  }
  
  #intcss .column:nth-of-type(1) div:nth-child(2n + 4),
  #intcss .column:nth-of-type(2) div:nth-child(2n + 2),
  #delcss .column:nth-of-type(1) div:nth-child(2n + 2),
  #delcss .column:nth-of-type(2) div:nth-child(2n + 2) {
    padding: 8px 8px 8px 0px;
    justify-content: end;
  }
  
  #intcss .price,
  #delcss .price {
    font-family: 'Mulish', sans-serif;
    line-height: 100%;
    font-weight: 700;  
    }
  
  #intcss .price,
  #delcss .price {
   font-size: 52px;
   }
  
  #intcss img,
  #delcss img {
      width: auto;
      margin: 0;
    }
  
  #intcss img,
  #delcss img {
   height: 38px;
  }
  
  
  #intcss span,
  #delcss span {
    font-size: 50%;
    margin-top: 0.75em;
    margin-left: 0.15em;
  }
  
  #intcss .column:nth-of-type(2) div:nth-child(2n - 2),
  #delcss .column div:nth-child(2n - 2) {
    justify-content: end;
  }
  
  @media only screen and (max-width: 750px)
  {
       #delcss .column:first-of-type div:first-of-type,
       #delcss .column:first-of-type div:nth-of-type(2) {
         margin-bottom: 8px;
       }
      
       #intcss .price,
       #delcss .price {
         font-size: 36px;
       }
      
       #intcss img,
       #delcss img {
         height: 30px;
       }
  }