

/************************************************************************
*  Pricing 1 css
************************************************************************/

/*Pricing table element*/


.pricing-single-ribbon {
    position: absolute;
    top: 0px;
    overflow: hidden;
    height: 25px;
    left: 0;
    right: 0;
    margin: auto;
    background: red;
    width: 312px;
    display: flex;
    justify-content: center;
    align-items: center;
 }


.tgx-price-table {
    background: #f9f9f9;
    padding: 10px 30px;
    box-shadow: 1px 2px 4px #ddd;
    transition: all 0.3s ease;
}
.tgx-price-table:hover {
    box-shadow: 1px 2px 15px #ddd;
    transition: all 0.3s ease;
}

.tgx-price-table__price {
    margin: 40px 0;

}

.tgx-price-table__price del{
    font-size:24px;

}


.tgx-price-table__heading{
	font-size: 26px;
}

.tgx-price-table__price{
	font-size: 52px;
}
.tgx-price-table__currency{
	font-size: 32px;
}

.tgx-price-table .tgx-pricing-icon {
  position: relative;
}
.tgx-price-table .tgx-pricing-icon:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  z-index: -1;
  top: 0;
  bottom: 0;
}
.tgx-price-table .tgx-pricing-icon .price-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
}

.tgx-price-table__period {
    font-size: 20px;
}

.tgx-price-table__features-list {
    margin-left: 0px;
    padding:0;
}

.tgx-price-table__features-list li{
    list-style: none;
    font-size: 14px;
}

.tgx-price-table__feature-inner i {
    margin-right: 5px;
}

.tgx-price-table__button{
	padding:10px 20px;
	border: 1px solid #ed485f;
	color: #fff;
    background: #ed485f;
    margin: 15px 0px 25px 0px;
    display: inline-block;
    text-align: center;
    font-size:14px;
}

.tgx-price-table__button:hover {
    color: #ed485f;
    border: 1px solid #ed485f;
    background: #fff;
}


