.plans {
  width: 94%;
  margin: 2rem 3%;
  margin-top: 4rem;
}
.plans .challenge {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.4rem;
  color: #21C56C;
  font-weight: 900;
}
.plans .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.plans .off {
  text-align: center;
}
.plans .plan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}
.plans .plan-content .each-section {
  margin-bottom: 1rem;
}
.plans .plan-content .each-section .label {
  color: gray;
  margin-bottom: 0.3rem;
}
.plans .plan-content .each-section .options-list {
  display: flex;
  column-gap: 1rem;
}
.plans .plan-content .each-section .options-list .each-option {
  text-align: center;
  padding: 0.8rem 1rem;
  border: 2px solid #21C56C;
  border-radius: 0.3rem;
  font-weight: 600;
  cursor: pointer;
}
.plans .plan-content .each-section .options-list .active-option {
  background-color: #21C56C;
  color: white;
}
.plans .right {
  display: grid;
  place-items: center;
}
.plans .right .show-prize {
  width: 20rem;
  border: 1px solid gainsboro;
  border-radius: 0.5rem;
  box-shadow: #21C56C 0px 3px 8px;
  padding: 0.5rem;
}
.plans .right .show-prize .before-off {
  padding: 0.5rem;
  color: gray;
  font-size: 2rem;
  text-decoration: line-through;
}
.plans .right .show-prize .final-prize {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 800;
}
.plans .right .labels li {
  list-style: circle;
  color: gray;
  padding: 0.4rem 0;
}
.plans .right .each-month {
  text-align: center;
  margin: 1rem;
  color: rgb(59, 59, 59);
}
.plans .right .each-month .prv {
  text-decoration: line-through;
  color: gray;
  font-size: 0.9rem;
}
.plans .right .sign-button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.plans .right .sign-button button {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  background-color: #21C56C;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}
.plans .type-info .info-head {
  font-size: 1.2rem;
  font-weight: 700;
}
.plans .type-info ul {
  padding: 0;
  line-height: 2rem;
}
.plans .type-info ul svg {
  padding-top: 0.4rem;
}
.plans .type-info ul li {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 0.5rem;
}
@media (max-width: 760px) {
  .plans .plan-content {
    grid-template-columns: 1fr !important;
    row-gap: 1rem;
  }
  .plans .plan-content .right {
    grid-row: 1/2;
  }
  .plans .plan-content .right .show-prize {
    width: 70%;
    margin: auto;
    max-width: 20rem;
  }
  .plans .plan-content .right .show-prize .final-prize {
    font-size: 2.2rem;
    padding-top: 0rem;
  }
}

.extra-off {
  position: relative;
  cursor: pointer;
  height: 2.5rem;
  overflow: hidden;
  font-size: 0.8rem;
}
.extra-off .extra-info {
  position: absolute;
  max-width: 15rem;
  opacity: 0;
  border: 1px solid gray;
  border-radius: 0.3rem;
  background-color: #fff;
  padding: 0.5rem;
  transition: 0.2s;
}
.extra-off .icon {
  color: white;
  background-color: #21C56C;
  border-radius: 0.3rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.extra-off .before {
  color: gray;
  text-decoration: line-through;
}
.extra-off:hover {
  overflow: visible;
}
.extra-off:hover .extra-info {
  opacity: 1;
}.plan-table {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.plan-table .title {
  text-align: center;
  margin: 1rem 0;
  font-size: 2.5rem;
  font-weight: 900;
}
.plan-table .only-day-discount {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 1rem 0;
}
.plan-table .table-head {
  font-size: 1.2rem;
  margin: 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid gainsboro;
  color: #82E08C;
  font-weight: 900;
}
.plan-table .prv {
  font-size: 0.9rem;
  text-decoration: line-through;
}
.plan-table .switch-type {
  width: max-content;
  margin: auto;
  background-color: #E1E1E1;
  color: black;
  display: flex;
  border-radius: 2rem;
  overflow: hidden;
  padding: 0.3rem;
  cursor: pointer;
}
.plan-table .switch-type div {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.plan-table .switch-type .active-type {
  background-color: white;
  border-radius: 2rem;
  color: black;
}
.plan-table .options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #E4F8E6;
  padding: 0.5rem;
  border-radius: 1rem;
}
.plan-table .options div {
  padding: 0.25rem;
}
@media (max-width: 767px) {
  .plan-table .options {
    grid-template-columns: 1fr;
    margin-top: 2rem !important;
  }
}
.plan-table .table-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  margin: 3rem auto;
  margin-bottom: 3rem;
  row-gap: 1rem;
  overflow: visible;
}
.plan-table .table-container .each-plan {
  background-color: white;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid #E1E1E1;
}
.plan-table .table-container .each-plan .name {
  font-size: 1rem;
  padding: 0.5rem 0;
  font-weight: 700;
}
.plan-table .table-container .each-plan .main-price {
  color: gray;
  text-decoration: line-through;
  font-size: 1rem;
}
.plan-table .table-container .each-plan .cur-prise {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0rem 0;
}
.plan-table .table-container .each-plan .cur-prise-pm {
  font-size: 1.2rem;
  font-weight: 600;
  color: gray;
  margin: 1rem;
}
.plan-table .table-container .each-plan .cur-prise-pm span {
  color: white;
}
.plan-table .table-container .each-plan .off {
  font-size: 1.2rem;
  margin: 1rem 0;
  font-weight: 700;
}
.plan-table .table-container .each-plan .sign-up-btn {
  margin-top: 0.5rem;
}
.plan-table .table-container .each-plan .sign-up-btn button {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
}
.plan-table .table-container .each-plan .options {
  text-align: start;
  margin-top: 2rem;
  padding: 0.5rem 0;
}
.plan-table .table-container .each-plan .options img {
  width: 1rem;
  margin-right: 0.2rem;
}
.plan-table .table-container .each-plan .options div {
  margin: 0.5rem 0;
}
.plan-table .table-container .special-plan {
  position: relative;
}
.plan-table .table-container .special-plan::before {
  position: absolute;
  width: calc(100% + 0.5rem);
  height: calc(100% + 1.8rem);
  background-color: #82E08C;
  top: -1.8rem;
  left: -0.25rem;
  z-index: -1;
  content: var(--after-text);
  text-align: center;
  padding-top: 0.3rem;
  border-radius: 24px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .plan-table {
    width: 90%;
    margin: 1rem auto;
  }
  .plan-table .table-container {
    row-gap: 2.5rem;
    margin: 0.5rem auto;
  }
  .plan-table .w {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .table-container {
    grid-template-columns: 1fr !important;
  }
}
.w {
  color: white !important;
}

.video-plans {
  max-width: 500px;
  margin: 1rem auto;
}
.video-plans video {
  width: 100%;
}.prices {
  padding: 1rem;
}
.prices .back-prices {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  max-width: 1300px;
  margin: auto;
  display: none;
}
@media (max-width: 600px) {
  .prices .back-prices {
    display: flex;
  }
}
.prices .mobile {
  display: none;
}
.prices .desktop {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 800px) {
  .prices .mobile {
    display: block;
  }
  .prices .desktop {
    display: none;
  }
}
.prices .logo {
  width: 10rem;
  margin: auto;
}
.prices .logo img {
  width: 100%;
}

.back-custom {
  max-width: 900px;
  margin: auto;
}
.back-custom span {
  background-color: #51b45b;
  border-radius: 50%;
  color: white;
  padding: 0.3rem 0.5rem;
  font-size: 1.2rem;
}

.iran-payment {
  direction: rtl;
  padding: 1rem;
}
.iran-payment .cart-num {
  text-align: center;
  font-size: 1.5rem;
  padding: 0.5rem;
  width: max-content;
  margin: auto;
  margin-top: 1rem;
  background-color: rgba(236, 236, 236, 0.418);
  border-radius: 0.3rem;
}
.iran-payment .name {
  text-align: center;
  color: gray;
  font-size: 0.8rem;
}
.iran-payment .info {
  text-align: center;
  padding: 0.5rem 0;
}
.iran-payment .open-whatsapp {
  display: flex;
  justify-content: center;
}
.iran-payment .open-whatsapp button {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.iran-payment .terms {
  text-align: center;
  font-size: 0.8rem;
  padding: 0.5rem;
  color: #51b45b;
  cursor: pointer;
}
.iran-payment .terms-text {
  padding: 0.5rem;
}

.content-agree {
  padding: 1rem;
}