:root {
  --small-space: 10px;
  --medium-space: 20px;
  --large-space: 40px;
  --white-color: #fff;
  --orange-color: #eb8624;
  --dark-color: #222222;
  --bg-color: #f1f1f1;
  --text-color: #555;
  --header-height: 90px;
  --info-rgb: 23 162 184;
}

body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  color: var(--text-color);
  text-align: right;
}

.p-t {
  padding-top: var(--large-space);
}

.p-b {
  padding-bottom: var(--large-space);
}

.main-header {
  height: var(--header-height);
  box-shadow: 0 0 10px rgba(0 0 0 / 0.1);
}

.main-header-logo {
  font-size: 1.5em;
  color: var(--text-color);
  font-weight: bold;
  position: relative;
}

.main-header-logo img {
  max-width: 70px;
}

.product {
  padding: var(--medium-space);
  background: #eee;
  border-radius: 10px;
}

.product .img {
  margin-bottom: var(--small-space);
}

.product .name {
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: var(--small-space);
}

.product .price {
  font-size: 1.2em;
  color: var(--text-color);
}

.product .price-num {
  color: var(--info);
  font-weight: bold;
  font-size: 1.3em;
}

.products .row {
  row-gap: var(--medium-space);
}

.product-page-info .name {
  font-weight: bold;
  margin-bottom: var(--medium-space);
}

.product-page-info .price-box {
  margin-bottom: var(--small-space);
}

.product-page-info .price-num {
  color: var(--info);
  font-weight: bold;
  font-size: 1.3em;
}

.product-page-info .desc {
  margin-bottom: var(--small-space);
}

.desc-text {
  line-height: 1.8;
  margin-bottom: 0;
}

.pay-now-btn {
  margin-top: var(--medium-space);
}

.pay .pay-head .img1 {
  max-width: 190px;
}

.pay .pay-head .img2 {
  max-width: 60px;
  margin-right: var(--medium-space);
}

/* steps */
.steps {
  margin: var(--large-space) 0;
  /* border-top: 1px solid rgba(0 0 0 / 0.1); */
}

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0 0 0 / 0.2);
}

.step-line-one,
.step-line-two,
.step-line-three {
  position: absolute;
  top: 0;
  height: 1px;
  background: transparent;
  width: calc(100% / 3);
  transform-origin: right;
}

.step-line-one {
  right: 0;
}

.step-line-two {
  right: calc(100% / 3);
}

.step-line-three {
  right: calc((100% / 3) * 2);
}

.step-line-one.active,
.step-line-two.active,
.step-line-three.active {
  background: var(--info);
}

.steps-inner {
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.step {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0 0 0 / 0.07);
  font-size: 1.1em;
  box-shadow: 0 0 0 23px #fff;
}

.step.active {
  background: var(--info);
  color: #fff;
  box-shadow: 0 0 0 10px rgba(23 162 184 / 0.05), 0 0 0 23px #fff;
}

.step::after {
  content: attr(data-text);
  position: absolute;
  bottom: -40px;
  font-size: 0.8em;
}

.step.active::after {
  color: var(--text-color);
  font-weight: bold;
}

/* form  */
.form-my {
  margin-top: var(--medium-space);
}
.form-box {
  position: relative;
  z-index: 1;
  padding-bottom: var(--large-space);
}

.form-group {
  margin-bottom: var(--medium-space);
}

.pay-content label {
  margin-bottom: var(--small-space);
  color: var(--text-color);
}

.pay-content input,
.pay-content select,
.phone-num input {
  border-radius: 5px !important;
  height: 45px;
  padding: 5px var(--medium-space);
  border-color: rgba(0 0 0 / 0.1) !important;
  color: var(--info) !important;
  transition: 0.3s;
}

.pay-content select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.phone-num input:focus,
.pay-content input:focus,
.pay-content select:focus {
  border-color: rgba(var(--info-rgb) / 0.6) !important;
  box-shadow: none !important;
  outline: none !important;
}

.note {
  margin-top: var(--space-sm);
  color: var(--main-color);
}

.otp-form-footer {
  margin-top: var(--space-lg);
}

.otp-btn {
  margin-top: 0 !important;
}

.otp-btn:not(:last-child) {
  margin-left: 20px !important;
}

.otp-img .img1 {
  max-width: 180px;
  margin-right: -10px;
}

.otp-img .img2 {
  max-width: 60px;
}

.otp-content .title {
  font-weight: bold;
  margin-bottom: var(--medium-space);
}

.otp-content .desc {
  line-height: 1.9;
  margin-bottom: var(--small-space);
}

.otp-content .box {
  margin-bottom: var(--small-space);
}

.otp-content .box .req {
  margin-left: var(--medium-space);
  min-width: 50px;
}

.phone-num {
  margin: var(--medium-space) 0;
}

.phone-num input {
  margin-top: 10px;
}

footer {
  padding: 10px 0;
}

.footer-link {
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.1em;
}

footer .footer-link img {
  max-width: 40px;
  margin-right: var(--small-space);
}
