.pricing-container {
  max-width: 960px;
  display: -webkit-flex;
  display:         flex;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: center;
          justify-content: center;
}

.pricing-table {
  position: relative;
  display: block;
  flex: none;
  margin: 5px;
  float: left;
  width: 321px;
  min-width: 280px;
  //height: 450px;
  //min-height: 450px;
  background: #ffffff;
  text-align: center;
  border: 1px solid #696969;
}
.pricing-table span {
  display: block;
}
.table-head {
  padding: 20px 0px 5px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #696969;
}

.table-head-time {
  padding: 5px 0px 20px 0px;
  font-size: 18px;
  //font-weight: bold;
  color: #696969;
  //border-bottom: 1px solid #696969;
}

.price {
  padding: 8px 0;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  background: #696969;
}

.table-row {
  text-align: left;	
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.table-row:nth-child(odd) {
  //background: #f7f7f7;
}
.purchase {
  padding: 35px 0;
}

a.buy {
  position: relative;
  display: inline-block;
  z-index: 5;
  padding: 7px 15px;
  //border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
          transition: all .5s ease;
  overflow: hidden;
  border: 1px solid #696969;
  color: #696969;
}

a.buy:hover {
  color: #ffffff;
  background: #696969;
}




