.comparison-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.desktop-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}

.cell {
    box-sizing: border-box;
    flex: 1;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.label-cell {
  flex: 1;
  font-weight: bold;
  text-align: right;
}

.cell h4 {
  font-size: 21px;
  font-weight: bold;
}
  
.mobile-product {
  display: none; 
}

.heading .cell img {
  max-width: 100%;
  min-height: 250px !important;
  margin-bottom: 0.5rem;
}

.cta-wrapper-spec {
  margin-top: 1rem;
  text-align: center;
}


.cta-button-spec {
  background: #0077b2;
  border-radius: 6px;
  border: 0;
  color: #fff;
  font-family: sans-serif;
  transition: all .4s ease;
  padding: 6px 18px;
  font-size: 24px;
  line-height: 1.5em;
  width: auto;
  height: auto;
  text-shadow: none;
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
  text-decoration: none;
}

.comparison-table .desktop-row:last-child {
  border-bottom: none;
}


/* Mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-product {
    display: block; 
  }
  
  .desktop-only {
    display: none; 
  }

  .mobile-product {
    border: none;
    border-radius: 0px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .mobile-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
  }

  .mobile-product h4 {
    margin-bottom: 1rem;
  }

  .mobile-product .property {
    text-align: left;
    margin: 0.3rem 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
  }

  .mobile-product .property strong {
    width: 100px;
    display: inline-block;
  }

  .cell-mobile {
    text-align: right;
  }

}