.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#product-checklist {
  font-size: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#product-checklist > div {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

@media (max-width: 767px) {
  #product-checklist > div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

#product-checklist > div:first-child {
  padding-right: 2%;
}

#product-checklist > div:last-child {
  width: 40%;
  padding-right: 0;
}

ul.checklist {
  list-style-image: url(../images/check_small_green.png);
}

ul.checklist li {
  line-height: 2;
}

hr.grun {
  border-color: #64B879;
}

.equal {
  font-size: 3em;
  display: inline-block;
  line-height: 0.33em;
  position: relative;
  top: 0.15em;
  left: 0.2em;
  color: #64B879;
  margin: 0 0.3em 0 0;
}

.margins {
  margin: 1em 0;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*# sourceMappingURL=product.css.map */