.ova-pricing {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 40px 35px;
  background-color: #fff;
  box-shadow: 0px 1px 45px rgba(0, 0, 0, 0.07);
  border-radius: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .ova-pricing {
    padding: 35px 20px;
  }
}
.ova-pricing:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-pricing.ova-pricing-active {
  background-color: var(--heading);
}
.ova-pricing.ova-pricing-active .pricing-btn {
  color: #fff;
  border: 1px solid transparent;
  background-color: var(--primary);
}
.ova-pricing.ova-pricing-active .pricing-btn:hover {
  border: 1px solid #E9E9E9;
  background-color: transparent;
}
.ova-pricing.ova-pricing-active .icon {
  top: -1px;
  left: -1px;
}
.ova-pricing.ova-pricing-active .pricing-title, .ova-pricing.ova-pricing-active .pricing-description, .ova-pricing.ova-pricing-active .price {
  color: #fff;
}
.ova-pricing.ova-pricing-active .shape {
  background-color: #7b7b7b;
}
.ova-pricing.ova-pricing-active .pricing-service .pricing-service-list li .text_service {
  color: #fff;
}
.ova-pricing .icon {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30%;
  left: -30%;
  background-color: var(--primary);
  width: 100px;
  height: 100px;
  clip-path: polygon(100% 0, 0% 0%, 0 100%);
  border-radius: 40px 0 0 0;
}
.ova-pricing .icon i {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: inline-flex;
  font-size: 25px;
  color: #fff;
  transform: translate(-18px, -18px);
}
.ova-pricing .pricing-title {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 0 25px 0;
  font-size: 24px;
  line-height: 1.5;
}
.ova-pricing .pricing-description {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0;
  line-height: 1.5;
  color: var(--text);
  padding-bottom: 25px;
}
.ova-pricing .shape {
  width: 150%;
  height: 1px;
  background-color: #e9e9e9;
  margin: 0 -35px;
}
@media (max-width: 767px) {
  .ova-pricing .shape {
    margin: 0 -20px;
  }
}
.ova-pricing .price {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  color: var(--heading);
  font-weight: 700;
  padding-bottom: 15px;
}
.ova-pricing .price .ova-price {
  display: inline-block;
  font-size: 48px;
}
.ova-pricing .price .period {
  font-size: 18px;
}
.ova-pricing .pricing-service {
  text-align: left;
}
.ova-pricing .pricing-service .pricing-service-list {
  margin: 30px 0;
  padding: 0;
  list-style-type: none;
}
.ova-pricing .pricing-service .pricing-service-list li {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  align-items: center;
  padding-bottom: 18px;
}
.ova-pricing .pricing-service .pricing-service-list li i {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-size: 15px;
  display: inline-flex;
  color: #3BC13B;
  margin-right: 13px;
}
.ova-pricing .pricing-service .pricing-service-list li .text_service {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-size: 16px;
  line-height: 1.3;
  color: var(--heading);
}
.ova-pricing .pricing-service .pricing-service-list li.text-service-disable .text_service {
  color: #7B7B7B;
}
.ova-pricing .pricing-service .pricing-service-list li.text-service-disable i {
  color: #FE4037;
}
.ova-pricing .pricing-btn {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--heading);
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid #E9E9E9;
}
.ova-pricing .pricing-btn:hover {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  color: #fff;
  border: 1px solid transparent;
  background-color: var(--primary);
}

.rtl .ova-pricing .pricing-service {
  text-align: right;
}