.tf-pricetable,
.tf-pricetable .header-price,
.tf-pricetable .price-type,
.tf-pricetable .price,
.tf-pricetable .title,
.tf-pricetable .number-order,
.tf-pricetable .wrap-icon svg,
.tf-pricetable .wrap-icon i,
.tf-pricetable .text,
.tf-pricetable .time,
.tf-pricetable .subtitle {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tf-pricetable {
  border: 1px solid #EDEDED;
  padding: 30px 30px 29px 30px;
  border-radius: 16px;
  background: #FFF;
}

.tf-pricetable:hover,
.tf-pricetable.setactive {
  box-shadow: 0px 30px 60px 0px #0000001A;
}

.tf-pricetable:hover .content-price,
.tf-pricetable.setactive .content-price,
.tf-pricetable.setactive .title,
.tf-pricetable:hover .title {
  color: var(--theme-primary-color);
}

.tf-pricetable:hover .wrap-button .tf-btn,
.tf-pricetable.setactive .wrap-button .tf-btn  {
  background: var(--theme-primary-color);
  color: #fff;
}

.tf-pricetable .content-price {
  font-size: 70px;
  font-weight: 600;
  line-height: 1em;
  color: #24272C;
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
}

.tf-pricetable .content-price .price-type {
font-size: 30px;
font-weight: 500;
line-height: 37.8px;
}

.tf-pricetable .content-price .time {
  font-size: 30px;
  font-weight: 500;
  line-height: 37.8px;
  margin-left: 8px;
}

.tf-pricetable .title {
  color: #24272C;
  font-size: 30px;
  font-weight: 500;
  line-height: 37.8px;
  margin-bottom: 18px;
}

.tf-pricetable .subtitle2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 31px;
}

.tf-pricetable .subtitle {
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  color: #696665;  
  margin-bottom: 34px;
}

.tf-pricetable .text {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #696665;  
}


.tf-pricetable .wrap-pricon {
  margin-bottom: 30px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: left;
  color: var(--theme-primary-color);
  font-size: 70px;
}

.tf-pricetable .wrap-icon {
  font-size: 20px;
  color: #7ED321;
  margin-right: 8px;
  flex-shrink: 0;
}

.tf-pricetable .inner-content-list {
  margin-bottom: 34px;
}

.tf-pricetable .inner-content-list .item {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  margin-bottom: 12.4px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 14px;
}

.tf-pricetable .inner-content-list .item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.tf-pricetable .wrap-button .tf-btn {
  border-radius: 14px;
  background: transparent;
  padding: 14px 20px;
  color: var(--theme-primary-color);
  width: 100%;
  border: 1px solid var(--theme-primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 20.16px;
}

.tf-pricetable .wrap-button .tf-btn:hover {
  border: 1px solid var(--theme-primary-color);
  color: #fff;
  background: var(--theme-primary-color);
}

.tf-pricetable.style1 .price-type {
  font-size: 30px;
  font-weight: 500;
  line-height: 37.8px;
}

.tf-pricetable .badge-table {

  text-align: center;

  position: absolute;
  top: 22px;
  right: -35px;
  transform: rotate(45deg);
  width: 140px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}

.tf-pricetable .badge-table span {
  clip-path: polygon(21% 0%, 78% 0%, 97% 100%, 2% 100%);
  padding: 4px 10px 4px 10px;
  background: var(--theme-primary-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #fff;
  width: 100%;
  display: block;
  position: relative;
  z-index: 5;
}

.tf-pricetable .badge-table::after {
  content: '';
  width: 9px;
  height: 4px;
  position: absolute;
  left: 0px;
  bottom: -3px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #903F00;
  transform: rotate(-45deg);
}

.tf-pricetable .badge-table::before {
  content: '';
  width: 5px;
  height: 3px;
  position: absolute;
  right: 3px;
  bottom: -2px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #903F00;
  transform: rotate(45deg);
}

.tf-pricetable:hover .badge-table,
.tf-pricetable.setactive .badge-table {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1200px) {
 
}

@media only screen and (max-width: 991px) {
  
}

@media only screen and (max-width: 767px) {

}
