/*----------------------------------------*/
/*  Pricing Plans
/*----------------------------------------*/

#price {
  text-align: center;
}

.plan {
    width:90%;
  display: inline-block;
  margin: 10px 5%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6);
}

.plan-inner {
  background: #ffffff;
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position:relative;
}

.entry-title {
  background: #000066;
  height: 160px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.entry-title>h3 {
  background: #b92b27;
  font-size: 24px;
  padding: 20px 0;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #b92b27;
  height: 100px;
  width: 100px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #fff;
  line-height: 80px;
  font-size: 28px;
  font-weight: 700;
}

.price span {
  position: absolute;
  font-size: 12px;
  bottom: -15px;
  left: 30px;
  font-weight: 400;
}

.entry-content {
    padding:10px;
  color: #323232;
}

.fa-times
{
    color:red;
}
.fa-check
{
    color:#008000;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;
}

.plan a {
  margin:10px;
}

.form-control:disabled, .form-control[readonly]
{
    background:#edf1ff !important;
}