* {
  transition: all 0.3s ease-in-out 0s;
}

#price-table {
  text-align: center;
  padding: 50px 0;
  /* prequesites */
  /* main layout */
  /* state */
  /* hover */
  /* media-queries */
}
#price-table .pt-price-circle {
  background-image: radial-gradient(circle at 50% 50%, #fff, #ccc);
  width: 100px;
  height: 100px;
  border: 9px solid #fff;
  border-radius: 50%;
  margin: auto;
  line-height: 1.5;
}
#price-table .pt-price .pt-price-tag {
  color: #8cc63f;
  font-size: 2.3rem;
}
#price-table .pt-price .pt-price-subline {
  font-size: 1.2rem;
  font-weight: 700;
}
#price-table .pt-wrap {
  border: 1px solid #eee;
}
#price-table .pt-wrap button {
  width: 89px;
  height: 31px;
  background-image: linear-gradient(to bottom, #b4ec51, #8cc63f 92%, #429321);
  border: solid 1px #8cc63f;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

    
#price-table .pt-head {
  padding: 10px;
  background-color: #2d343e;
  height: 111px;
  margin-bottom: 75px;
}
#price-table .pt-head span {
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
}
#price-table .pt-head .pt-price-circle {
  margin-top: 15px;
}
#price-table .pt-head .pt-price-circle .pt-price {
  margin-top: 20px;
}
#price-table .pt-body ul {
  list-style: none;
  padding: 30px 0;
  font-size: 1.8rem;
}
#price-table .pt-body ul li {
  border: 0;
  padding: 0.3rem;
}
#price-table .pt-body ul li:nth-child(even) {
  background: #eee;
}
#price-table .pt-foot {
  border-top: 1px solid #eee;
  padding: 15px 0;
}
#price-table .pt-foot .pt-price {
  margin-bottom: 15px;
}
#price-table .pt-featured {
  background-color: #2d343e;
  padding: 30px 0;
  margin-top: -30px;
}
#price-table .pt-featured .pt-foot .pt-price .pt-price-subline {
  color: #fff;
}
#price-table .pt-featured .pt-body ul li {
  background-color: #2d343e;
  color: #fff;
}
#price-table .pt-featured .pt-body ul li:nth-child(even) {
  background-color: #444b56;
}
#price-table .pt-featured .pt-foot {
  border-top: 1px solid #444b56;
}
#price-table .pt-wrap:hover button:hover {
  border: 1px solid #ccc;
  background-image: none;
  background-color: #2d343e !important;
}
#price-table .pt-wrap:hover .pt-head {
  background-color: #8cc63f;
}
#price-table .pt-wrap:hover .pt-head span {
  font-size: 2.5rem;
}
#price-table .pt-wrap:hover .pt-body ul li:hover {
  background-color: #8cc63f;
}
@media (max-width: 768px) {
  #price-table .pt-wrap {
    margin-top: 30px;
  }
  #price-table .pt-featured {
    padding: 0;
  }
}