/*
Compile SASS: pricing.css
*/
.pricing {
  background-color: #f3f3f3;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 5rem; }
  .pricing h1 {
    text-align: center;
    margin: 0;
    padding: 2rem 0 3rem; }
  .pricing em {
    font-weight: bold; }
  .pricing .intro {
    font-size: 1.7rem;
    max-width: 80rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 4rem; }
  .pricing .columns {
    display: flex;
    align-items: flex-start; }
    .pricing .columns .column {
      width: 100%;
      border: 1px solid Black;
      margin-right: 3rem; }
      .pricing .columns .column .row {
        padding: 1rem;
        border-bottom: 1px dotted Black;
        font-size: 1.5rem;
        background-color: White; }
        .pricing .columns .column .row.title {
          border-bottom: none;
          background-color: #333;
          color: White;
          font-size: 1.8rem; }
        .pricing .columns .column .row.price {
          font-size: 1.8rem;
          font-weight: bold;
          font-family: "Open Sans";
          color: #474747; }
        .pricing .columns .column .row.price_button {
          background-color: #333;
          color: White;
          cursor: pointer;
          font-style: italic; }
        .pricing .columns .column .row:last-child {
          border-bottom: none; }
        .pricing .columns .column .row .check {
          position: relative;
          padding-left: 2.6rem; }
          .pricing .columns .column .row .check:before {
            font-family: fontello;
            content: "\e800";
            position: absolute;
            top: 0rem;
            left: 0;
            color: #40c24b;
            font-size: 1.4rem; }
      .pricing .columns .column:last-child {
        margin-right: 0; }
    @media screen and (max-width: 886px) {
      .pricing .columns {
        display: block; }
        .pricing .columns .column {
          margin-bottom: 4rem; }
          .pricing .columns .column:last-child {
            margin-bottom: 0; } }
