
@import url("common.css");

@media only screen and (min-width: 600px) {
  div.flex {  
    /*padding: 0 100px;*/
  }
}

.flex ul.noList {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;  
}

.flex ul.noList li {
  /*padding: 0.3em 0.6em;*/
  /*margin: 0;*/
}

.flex > section {  
  /*max-width: 600px;*/
  max-width: 100%;
  margin: 10px 20px;
  /*padding: 10px 10px; */
  border-radius: 10px;
  border: 1px solid #dddddd;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
  /*box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.2);*/
  /*box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);*/
}

.buttonBuy {
  background-color: #FE9A2E;
  border: 0;  
  border-radius: 35px;
  cursor: pointer;
  color: white;  
  font-weight: bold;
  font-size: 22px;
  padding: 16px 0;
  display: block;
  width: 100%;
  /*margin-top: 25px;*/
}
.buttonBuy:hover {
  color: white;  
  box-shadow:0 -2px 0 0 #FE9A2E inset;
  background:#FAAC58
}
.buttonBuy:active {
  background-color:#FAAC58;
  background-image:-webkit-linear-gradient(#FAAC58 0%,#ba3d25 100%);
  background-image:linear-gradient(#FAAC58 0%,#ba3d25 100%)
}

.priceInfo {
   /*align-self: flex-end;*/
   margin-top: auto; /* this is the solution */
}

.product {
  width: 100%;
  padding-top: 15px;
  text-align: left;
  overflow: hidden;
}

/* Labels */

.title {
  font-size: 20px;
  font-weight: bold;
}

.subtitle {
  padding-top: 5px;
  font-size: 16px;
  font-weight: lighter;
}

.title-snippet {
  font-size: 16px;
  font-weight: bold;
}

.subtitle-snippet {
  padding-top: 5px;
  font-size: 12px;
  font-weight: lighter;
}

.brand {
  color: #9c9c9c;
}

.platform {
  color: #1e667c;
}

.edition {
  color: #000000;
}

.feature-title {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  padding-top: 25px;
  width: 100%;
}

.feature-description {
  color: #000000;
  font-size: 15px;
  font-weight: lighter;
  text-align: left;
  padding-top: 10px;
  line-height: 20pt;
}

.price-container {
  margin-top: 10px;   
  margin-bottom: 10px;   
}

.price-box {
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px;   
  margin: 5px;   
  width: 100%;
}

.price-box.suggested {
  background: #165e73;   
}

.price-box.current {
  background: #04B404;   
}

.price-box.current-red {
  background: #bf0e0e;   
}

.price-box .title {
  font-size: 16px;
  font-weight: lighter;
  padding-bottom: 5px;
  text-align: center;
}

.price-box .price {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

.amount-saved {
  font-size: 20px;
  font-weight: lighter;
  /*text-align: center;*/
  margin-top: 10px;
  margin-bottom: 10px;
}


@media only screen and (min-width: 600px) {
  .flex > section {  
    max-width: 600px;
    margin: 10px auto;
  }