.step1Options {
  /* display: none; */
}

.choosePrice {
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: #0F0F0F;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

.walletOptionWrapper,
.customPlanWrapper {
  padding: 24px 14px 27px;
  border: 1px solid #DBDBDB;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: none;
}

.walletOptionWrapper.active,
.customPlanWrapper.active {
  border-color: var(--primary-blue);
  display: block;
}

.walletOptionWrapper::after {
  position: absolute;
  content: 'Limited Time Offer';
  padding: 4px 6px;
  background: #D32F2F;
  font-size: 13px;
  line-height: 100%;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: -12px;
}

.walletTopHeading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.walletTopHeading>p {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  color: #0F0F0F;
}

.planPricingBreakDown {
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
}

.planPricingBreakDown>span {
  font-weight: 450;
  font-size: 15px;
  line-height: 100%;
  text-decoration: line-through;
  color: #7D7D7D;
}

.planPricingBreakDown p {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: #0F0F0F;
  padding-left: 4px;
}

.planPricingBreakDown .planPercentageOff {
  position: absolute;
  left: 75%;
  bottom: -15px;
  padding: 1px 2px 1px 3px;
  background: #D32F2F;
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  color: #FFFFFF;
  transform: translateX(-50%);
  width: 55px;
}

.tooltip-text {
  width: 244px;
  background-color: #000;
  color: #fff;
  text-align: left;
  padding: 10px;
  font-style: italic;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  top: -75px;
  right: -23px;
  transition: opacity 0.3s ease;
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  display: none;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 26px;
  border-width: 6px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.tooltip-text.left {
  right: unset;
  left: 60%;
}

.tooltip-text.left::after {
  right: unset;
  left: 26px;
}

.tooltip-text.double {
  right: unset;
  left: 50%;
}

.tooltip-text.double::after {
  right: unset;
  left: 73px;
}

.tooltip-text.left.offset::after {
  left: 38px;
}

.planPricingBreakDown svg:hover+.tooltip-text {
  display: block;
}

.walletPlanSelector {
  padding: 9px 6px 0 9px;
  border: 1px solid #D3D3D3;
  position: relative;
  border-radius: 5px;
  margin-top: 10px;
  max-width: 262px;
}

.walletPlanSelector.active {
  border-bottom-color: transparent;
  border-radius: 5px 5px 0 0;
}

.walletPlanSelector.disabled,
.walletPlanSelector.disabled * {
  cursor: no-drop;
}

.walletPlanSelector::after {
  position: absolute;
  content: '';
  background: url(../../assets/images/order/plan-dd-icon.svg);
  width: 16px;
  height: 16px;
  top: 8px;
  right: 6px;
  pointer-events: none;
}

.walletPlanSelector.active::after {
  transform: scaleY(-1);
}

.walletPlansDropdown {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 10px;
}

.walletPlansDropdown>span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-blue);
  position: relative;
}

.walletPlansDropdown>span::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  left: 2px;
  top: 2px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.selectedPlan {
  font-weight: 450;
  font-size: 13px;
  line-height: 100%;
  color: #0F0F0F;
  padding-left: 3px;
}

.planUSP {
  padding: 0 3px 2px 3px;
  border-radius: 2px;
  font-style: italic;
  font-size: 13px;
  line-height: 100%;
}

.planUSP.blue {
  background: #E5F2FF;
  color: var(--primary-blue);
}

.planUSP.red {
  background: #FFEBEB;
  color: #D32F2F;
}

.walletPlansOptions {
  display: none;
  position: absolute;
  background: #fff;
  width: calc(100% + 2px);
  left: -1px;
  padding: 0 6px;
  border: 1px solid #D3D3D3;
  border-radius: 0 0 5px 5px;
  border-top: none;
}

.walletPlansOptions p {
  font-size: 13px;
  line-height: 100%;
  color: #0F0F0F;
  padding: 10px 0;
  border-top: 1px solid #E2E8F0;
}

.walletPlansOptions p.disabled {
  cursor: no-drop
}

.walletPlansOptions p span {
  color: #7D7D7D;
  font-size: 11px;
}

.oneTimeText {
  font-size: 12px;
  line-height: 100%;
  vertical-align: middle;
  color: #666666;
  margin: 8px 0 12px;
}

.saveText {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 100%;
  color: #0F0F0F;
  margin: 10px 0 15px;
}

.saveText span {
  color: #13AD35;
}

.planPrepayText {
  font-size: 12px;
  line-height: 100%;
  color: #666666;
  margin: 12px 0 8px;
}

.compareTopupPlanAnch {
  font-size: 13px;
  line-height: 160%;
  text-decoration: underline;
  color: var(--primary-blue);
}

.compareTopupPlanAnch:hover {
  text-decoration: none;
}

.orText {
  padding: 0 6px;
  text-align: center;
  max-width: max-content;
  background: #fff;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  margin: auto;
  color: #7D7D7D;
  position: relative;
}

.orTextDiv {
  position: relative;
  margin: 12px 0;
}

.orTextDiv::before {
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  height: 1px;
  background: #DBDBDB;
  top: 50%;
  transform: translateY(-50%);
}

.regularRateDiv {
  padding: 30px 15px 30px 20px;
  border: 1px solid #DBDBDB;
  border-radius: 8px;
  cursor: pointer;
  display: none;
}

.regularRateDiv.active {
  border-color: var(--primary-blue);
  display: block;
}

.regularRateWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
}

.regularRateWrapper p {
  color: #0F0F0F;
  font-size: 16px;
  line-height: 100%;
}

.regularRateWrapper span {
  text-align: right;
  color: #0F0F0F;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}

.regularRateDesc {
  font-size: 14px;
  line-height: 100%;
  color: #4B5563;
  margin-bottom: 10px;
}

.normalTopupCompare .regularRateDesc {
  font-size: 13px;
  margin-bottom: 15px;
}

.regularRateDesc.sm {
  font-size: 13px;
  line-height: 150%;
}

.regularSaveWrapper {
  padding-top: 15px;
  margin: 15px 0 0;
  border-top: 1px solid #E5E7EB;
}

.normalTopupCompare .regularSaveWrapper {
  margin-top: 0;
  border-top: none;
}

.regulareSaveHeading {
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 2px;
  font-weight: 500;
  color: #1F2937;
}

.regulareSaveHeading span {
  color: var(--primary-blue);
}

.orderBtnsNew {
  display: none;
}

.nextBtnNew {
  padding: 13px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 8px;
  font-size: 15px;
  line-height: 100%;
  margin-top: 20px;
  color: #FFFFFF;
  text-align: center;
  display: block;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nextBtnNew:hover {
  background: var(--primary-blue-hover);
  color: #ffff;
}

.nextBtnNew.disabled {
  background: var(--primary-blue);
  cursor: no-drop;
}

.newUserIntentWrapper {
  display: none;
  padding-bottom: 12px;
  border-bottom: 1px solid #D7EDFF;
  margin-bottom: 12px;
}

.walletPlanSelectorStep2 {
  border: 1px solid var(--primary-blue-hover);
  position: relative;
  border-radius: 5px;
  background: #0654e612;
}

.walletPlanSelectorStep2.active {
  border-bottom-color: transparent;
  border-radius: 5px 5px 0 0;
}

.walletPlanSelectorStep2.disabled,
.walletPlanSelectorStep2.disabled * {
  cursor: no-drop;
}

.walletPlanSelectorStep2::after {
  position: absolute;
  content: '';
  background: url(../../assets/images/order/plan-dd-icon.svg);
  width: 16px;
  height: 16px;
  top: 8px;
  right: 6px;
  pointer-events: none;
}

.walletPlanSelectorStep2.active::after {
  transform: scaleY(-1);
}

.walletPlansDropdownStep2 {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 6px 10px;
}

.walletPlansDropdownStep2>span {
  border: 1.5px solid #0F0F0F;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
}

.walletPlansDropdownStep2>span::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  left: 2px;
  top: 2px;
  background: #0F0F0F;
  border-radius: 50%;
}

.walletPlansDropdownStep2 .selectedPlan {
  font-size: 15px;
  line-height: 100%;
  color: #0F0F0F;
}

.walletPlanSelectorStep2.blue .walletPlansDropdownStep2>span {
  border-color: #1B97FF;
}

.walletPlanSelectorStep2.blue .walletPlansDropdownStep2>span::after {
  background: #1B97FF;
}

.walletPlanSelectorStep2.blue .walletPlansDropdownStep2 p {
  color: #1B97FF;
}

.walletPlanSelectorStep2.green .walletPlansDropdownStep2>span {
  border-color: #00B646;
}

.walletPlanSelectorStep2.green .walletPlansDropdownStep2>span::after {
  background: #00B646;
}

.walletPlanSelectorStep2.green .walletPlansDropdownStep2 {
  background: #E3FFEE;
}

.walletPlanSelectorStep2.green .walletPlansDropdownStep2 p {
  color: #00B646;
}

.walletPlanSelectorStep2.red .walletPlansDropdownStep2>span {
  border-color: #D32F2F;
}

.walletPlanSelectorStep2.red .walletPlansDropdownStep2>span::after {
  background: #D32F2F;
}

.walletPlanSelectorStep2.red .walletPlansDropdownStep2 {
  background: #FFEBEB;
  border-color: #FFEBEB;
}

.walletPlanSelectorStep2.red .walletPlansDropdownStep2 p {
  color: #D32F2F;
}

.walletPlansOptionsStep2 {
  display: none;
  position: absolute;
  background: #fff;
  width: calc(100% + 2px);
  left: -1px;
  padding: 0 6px;
  border: 1px solid #D3D3D3;
  border-radius: 0 0 5px 5px;
  border-top: none;
  z-index: 3;
}

.walletPlansOptionsStep2 p {
  font-size: 15px;
  line-height: 100%;
  color: #0F0F0F;
  padding: 10px 6px;
  border-top: 1px solid #E2E8F0;
  cursor: pointer;
  background: #fff;
}

.walletPlansOptionsStep2 p.disabled {
  cursor: no-drop;
}

.walletPlansOptionsStep2 p:hover {
  opacity: .7;
}

.missingOutText {
  font-size: 11px;
  line-height: 24px;
  color: #2D2D2D;
  padding: 4px 0 24px 23px;
  position: relative;
  display: none;
  border-bottom: 1px solid #D7EDFF;
  margin-bottom: 12px;
}

.missingOutText::before {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background: url(../images/price_tag.svg);
  left: 0;
  top: 10px;
}

.missingOutText .green {
  color: #00B646;
}

.missingOutText a {
  color: #0000EE;
  text-decoration: underline;
}

.missingOutText a:hover {
  text-decoration: none;
}

.normalTopupCompare {
  display: none;
}

.packagePricingWrapper {
  display: none;
}

.packageBuying {
  display: none;
  padding: 12px 0;
  border-top: 1px solid #D7EDFF;
}

.tooltipDiv {
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
}

.tooltipDiv svg:hover+.tooltip-text {
  display: block;
}

.totalCal .tooltip-text {
  top: -70px;
  right: -18px;
}

.totalCal .tooltip-text::after {
  right: unset;
  left: 40px;
}

.packageBuying .singlePriceDetail p.normalFont {
  font-size: 13px;
  line-height: 24px;
  color: #525960;
}

.summaryCalculator .packageBuying p.bonusPrice.bigger {
  font-weight: 400;
  font-size: 14px;
  margin-top: 0;
}

.packageBuying .singlePriceDetail {
  margin-top: 9px;
}

.packageBuying .singlePriceDetail:first-child {
  margin-top: 0;
}

.howItWorksModal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
}

.howItWorksOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, .75);
}

.howItWorksContent {
  padding: 43px 27px 17px;
  background: #F9FAFE;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 690px;
  width: 100%;
  height: 530px;
  transform: translate(-50%, -50%);
  z-index: 100;
  border-radius: 20px;
}

.howItWorksContent>p {
  text-align: center;
  color: #333;
  font-size: 32px;
  margin-bottom: 30px;
}

.steps {
  list-style: none;
  padding: 0;
}

.steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 8px 15px;
  background: #fafafa;
  border-left: 4px solid var(--primary-blue);
  border-radius: 4px;
}

.steps li p {
  font-size: 15px;
  line-height: 150%;
  color: #0F172A;
}

.steps li p span {
  color: #4B5563;
  display: block;
  font-size: 14px;
}

.showWalletPlansBtn {
  padding: 13px 25px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 8px;
  font-size: 15px;
  line-height: 100%;
  margin-top: 20px;
  color: #FFFFFF;
  text-align: center;
  display: block;
  max-width: max-content;
  margin: auto;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.showWalletPlansBtn:hover {
  background: var(--primary-blue-hover);
}

.orderBtnsNew .alreadyUserText {
  text-align: center;
  margin-top: 15px;
}

@media (max-width:575px) {
  .howItWorksContent {
    padding: 30px 15px 20px;
    max-width: calc(100% - 30px);
    height: 580px;
  }

  .howItWorksContent>p {
    font-size: 25px;
  }

  .steps li {
    padding: 10px 0 10px 10px;
  }

  .steps li p {
    line-height: 140%;
  }

  .steps li p span {
    display: block;
    font-size: 13px;
  }
}