@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.pricing_sec .heading {
  margin: 0 auto 3rem;
  max-width: 600px;
}
.pricing_sec .pricing_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px 20px;
}
.pricing_sec .pricing_wrapper .price_col {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(189, 189, 189, 0.5803921569);
  padding: 20px;
  text-align: center;
}
.pricing_sec .pricing_wrapper .price_col .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 5px;
  background: var(--lightprime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing_sec .pricing_wrapper .price_col .icon img, .pricing_sec .pricing_wrapper .price_col .icon svg {
  width: 60%;
  height: 60%;
}
.pricing_sec .pricing_wrapper .price_col h6 {
  font-size: 20px;
  line-height: 1.3;
}
.pricing_sec .pricing_wrapper .price_col .desc {
  margin: 5px 0 20px;
  height: 55px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pricing_sec .pricing_wrapper .price_col .desc p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

.pricing-pop.model {
  border-radius: 10px;
  max-width: 1100px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.6s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100vh) scale(0);
}
.pricing-pop.model.is-open {
  transition: all 0.6s;
  transform: translate(-50%, -50%) scale(1);
}
.pricing-pop.model .model-body {
  background: var(--white);
  border-radius: 10px;
  max-height: 90vh;
  margin-top: 30px;
  padding: 0 30px 40px;
  overflow-y: auto;
}
.pricing-pop.model .model-body::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.pricing-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.pricing-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
@media (max-width: 1370px) and (max-height: 770px) {
  .pricing-pop.model .model-body {
    height: 85vh;
  }
}
.pricing-pop.model .model-body .pop_wrapper .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.pricing-pop.model .model-body .pop_wrapper .heading .icon {
  width: 80px;
  height: 80px;
  background: var(--lightprime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-pop.model .model-body .pop_wrapper .heading .icon img, .pricing-pop.model .model-body .pop_wrapper .heading .icon svg {
  width: 60%;
  height: 60%;
}
.pricing-pop.model .model-body .pop_wrapper .heading h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
}
.pricing-pop.model .model-body .pop_wrapper .details_wrap {
  margin: 20px 0 30px;
}
.pricing-pop.model .model-body .pop_wrapper .details_wrap p {
  color: var(--text);
}
.pricing-pop.model .model-body .pop_wrapper .details_wrap p:not(:last-child) {
  margin-bottom: 7px;
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px 50px;
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list .treat_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list .treat_name .treat, .pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list .treat_name .price {
  font-weight: 600;
  font-size: 18px;
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list .treat_name .treat {
  color: var(--primary);
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--text);
  font-size: 14px;
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list ul li:not(:last-child) {
  margin-bottom: 5px;
}
.pricing-pop.model .model-body .pop_wrapper .price_wrapper .price_list ul li span {
  color: var(--black);
  font-weight: 600;
}/*# sourceMappingURL=pricing.css.map */