@import url("https://fonts.googleapis.com/css?family=Abel");

#pricing {
 width: 100%;

 @media screen and (min-width: 1024px) {
  width: 1100px;
  margin: 0 auto;
 }

 #pricing-tables {
  font-family: "Abel", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  @media screen and (min-width: 1024px) {
   flex-direction: row;
  }

  .pricing-table {
   max-width: 300px;
   width: 100%;
   margin: 15px 0;

   @media screen and (min-width: 1024px) {
    margin: 0;
   }

   .header {
    .title {
     text-align: center;
     text-transform: uppercase;
     padding: 15px 0;
     background: #B3CCFF;
     color: #000;
     font-size: 16x;

     outline-style: solid;
     outline-width: thin;
    }

    .price {
     text-align: center;
     text-transform: uppercase;
     padding: 15px 0;
     background: #f6f6f6;
     color: #000;
     font-size: 55px;
     font-weight: 300;

     outline-style: solid;
     outline-width: thin;

     span {
      font-size: 24px;
      vertical-align: super;
     }
    }
   }

   .features {
    background: #fff;

    outline-style: solid;
    outline-width: thin;

    ul {
     list-style: none;
     margin: 0;
     padding: 15px 0;

     li {
      padding: 8px 5px;
      text-align: center;
      font-size: 22px;

      span {
       color: #666;
      }
     }
    }
   }

   &.featured {
    .header {
     .title {
      background: #fea8a9;
      font-weight: bold;
      color: #000;
     }
    }
   }
  }
 }
}
