/* Start Variables */
:root {
  --main-color: #5e2a8d;
  --border-color2: #dfe3e8;
  --background-color: #f9f9fb;
  --main-yellow: #f9e101;
}
/* End Variables */
/* Start Global Rules */
[type="button"]:focus,
[type="button"]:hover,
[type="submit"]:focus,
[type="submit"]:hover,
button:focus,
button:hover {
  color: #fff;
  background-color: #673ab7 !important;
  text-decoration: none;
}
/*.container {*/
/*  margin: 0 auto;*/
/*  padding: 0 15px;*/
/*}*/
/* Small Screens */
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
/* Medium Screens */
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
/* Large Screens */
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
/* End Global Rules */

/* Start Components */
.main-heading {
  padding: 20px 0;
  position: relative;
}
.main-heading::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--border-color2);
  top: calc(50% - 1px);
  left: 0;
}
.main-heading span {
  background-color: #fff;
  padding-right: 15px;
  position: relative;
}
.sub-heading {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 25px;
 font-family: 'Roboto';
}
.rtl .sub-heading {
 font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: inherit;
}
input:checked + .radio-button {
  border-color: var(--main-color);
}
input:checked + .radio-button label::before {
  color: var(--main-color);
  border-color: var(--main-color);
}
.radio-button {
  padding: 15px;
  border: 1px solid var(--border-color2);
  border-radius: 10px;
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
}
.radio-button label {
  display: flex;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  height: 100%;
}
.radio-button label::before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  font-weight: 900;
  color: var(--border-color2);
  font-size: 12px;
  margin-right: 10px;
  min-width: 23px;
  min-height: 23px;
  border: 3px solid var(--border-color2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.verify {
  position: relative;
}
.verify input {
  padding-right: 50px !important;
}
.verify button {
  position: absolute;
  color: var(--main-color);
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-btn {
  background-color: var(--main-yellow);
  color: var(--main-color);
      font-size: 16px;
    border-radius: 8px;
    flex-wrap: wrap;
    font-family: 'Roboto';
    font-weight: 500;
}
/* End Components */

/* Start OTP */
.otp.hide {
  display: none;
}
.otp {
  display: block;
  position: fixed;
  width: 500px;
  max-width: 100%;
  background-color: #f6f6f6;
  border-radius: 8px;
  padding: 25px;
  top: 50%;
  left: 50%;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.otp .close {
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: #f44336;
  color: white;
  border: 2px solid white;
  border-radius: 6px;
  top: 4px;
  right: 5px;
  cursor: pointer;
}
.otp h1 {
  margin: 0 auto 20px;
  text-align: center;
  font-size: 25px;
  width: 90%;
}
.otp div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.otp input {
  width: 55px;
  border: none;
  outline: none;
  border-radius: 15px;
  font-size: 40px;
  padding: 16px;
  margin: 10px;
  text-align: center;
}
.otp span {
  display: block;
  color: #0e5893;
  margin-top: 15px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
}
.otp .main-btn {
  margin: 10px auto 0;
  position: static;
  border: none;
  outline: none;
  padding: 10px 30px;
  font-weight: bold;
  cursor: pointer;
}
/* End OTP */

/* Start Form */
form {
  padding-top: 20px;
}
form .container {
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  form .container {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  form .container > div:first-of-type {
    width: calc(70% - 10px);
  }
  form .container > div:last-of-type {
    width: 30%;
  }
}
form .container > div > div {
  color: var(--main-color);
  border: 1px solid var(--border-color2);
  border-radius: 15px;
  background-color: #fff;
  padding: 25px;
}
form .register .register-type {
  border-bottom: 1px solid var(--border-color2);
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  form .register .register-type {
    flex-direction: column;
  }
}
form .register .register-type .radio-button {
  flex-basis: 100%;
}
form .register .register-type .radio-button[data-sale]::before {
  content: attr(data-sale);
  position: absolute;
  background-color: #46de70;
  color: white;
  padding: 5px 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  top: 10px;
  right: -5px;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 767px) {
  form .register .register-type .radio-button[data-sale]::before {
    padding: 5px 8px;
    font-size: 12px;
  }
}
form .register .register-type .radio-button label {
  font-size: 20px;
}
@media (max-width: 767px) {
  form .register .register-type .radio-button label {
    flex-direction: column;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  form .register .register-type .radio-button label::before {
    margin: 0 0 5px;
  }
}
form .register .register-type .radio-button label .label-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
      font-family: 'Roboto';
}
@media (max-width: 767px) {
  form .register .register-type .radio-button label .label-text {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
 form .register .register-details .half-one {
        width: 100% !important;
}
.interested_in div{
  flex:0 0 100%!important;
}
}
@media only screen and (max-width: 480px) {
.have-lesson .share{top: -16px;}
.have-lesson .share2{top: -16px;}
.have-lesson .sub-heading{display:none;}
}
@media only screen and (max-width: 400px) {

.interested_in label{
  font-size:13px!important;
}
}
form .register .register-type .radio-button label .label-text div {
  width: 100%;
  margin-top: 15px;
  font-size: 12px;
  display: flex;
  align-items: flex-end;
}
form .register .register-type .radio-button label .details {
  font-weight: normal;
  width: 130px;
  max-width: 100%;
}
form .register .register-type .radio-button label .price {
  padding-left: 7px;
  margin-left: auto;
  text-align: right;
  position: relative;
}
form .register .register-type .radio-button label .price span:not(.old-price) {
  text-wrap: nowrap;
}
form .register .register-type .radio-button label .price .old-price {
  position: absolute;
  font-size: 10px;
  color: #919eab;
  bottom: calc(100% + 3px);
  right: 0;
  text-decoration: line-through;
}
form .register .register-details {
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 15px;
}
form .register .register-details div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form .register .register-details > div:first-of-type {
  width: calc(50% - 15px);
}
form .register .register-details > div:nth-of-type(2) {
  width: 50%;
}
form .register .register-details .half-one {
  width: 48%;
}
form .register .register-details div .required::after {
  content: "*";
  color: red;
}
form .register .register-details div .input {
  margin: 7px 0;
  padding: 15px 12px;
  border: 1px solid var(--border-color2);
  border-radius: 10px;
  outline: none;
}
form .share-form {
    display:none;
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  margin: 25px 0;
  border-radius: 20px;
  text-transform: capitalize;
flex-wrap: wrap;
font-family: 'Roboto';
}
form .share-form h2 {
  color: black;
}
form .share-form a {
  display: block;
  text-decoration: none;
  padding: 20px;
  text-align: center;
}
form .payment-form .sub-heading {
  margin-bottom: 10px;
}
form .payment-form .payment-method .radio-button {
  margin-bottom: 10px;
}
form .payment-form .payment-method label .label-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  row-gap: 5px;
font-family: 'Roboto';
}
form .payment-form .payment-method label .label-text .images {
  display: flex;
  justify-content: space-between;
  gap: 3px;
}
form .payment-form .payment-method label .label-text .images img {
  width: 30px;
  max-width: 100%;
}
form .payment-form .payment {
  margin: 25px 0;
}
form .payment-form .payment .promo-code {
  border-bottom: 1px solid var(--border-color2);
  padding: 7px 0;
}
form .payment-form .payment .promo-code input {
  width: 100%;
  padding: 12px 8px;
  border: 2px solid var(--border-color2);
  outline: none;
  border-radius: 6px;
  font-size: 14px;
}
form .payment-form .payment .terms {
  margin: 10px 0;
  color: #637381;
  font-size: 12px;
  text-transform: uppercase;
}
form .payment-form .payment .terms a {
  color: var(--main-color);
  text-decoration: underline;
  font-weight: bold;
}
form .payment-form .payment .cost {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  color: var(--main-color);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color2);
}
form .payment-form .payment .cost span {
  display: flex;
  justify-content: space-between;
      font-family: 'Roboto';
}
form .payment-form .payment .cost span::after {
  content: attr(data-cost) attr(data-discount) attr(data-vat);
  color: #919eab;
  font-size: 12px;
}
form .payment-form .payment .cost span[data-discount]::after {
  color: #d32f2f;
}
form .payment-form .payment .total {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  margin: 15px 0;
}
form .payment-form .payment .total::after {
  content: attr(data-total);
  font-size: 16px;
  font-weight: normal;
}
form .payment-form .payment .main-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  cursor: pointer;
font-size: inherit;
font-weight: 600;
padding: 15px 17px;
font-family: inherit;
}
.interested_in {
  display: flex!important;
  flex-direction: row!important;
  flex-wrap: wrap!important;
  align-items: baseline!important;
}
.interested_in div{
  display: block!important;
  flex:0 0 50%;
}
.interested_in input{
    margin: 3px 3px;
}
button:disabled {
    cursor: not-allowed!important;
}
/* End Form */
.otp_data input{ text-align: center;}
/* Style for the small gray line */
.phone-input {
  position: relative;
}

.phone-input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 44px;
  width: 1px;
  height: 44%;
  background-color: #cccccca6;
  transform: translateY(-50%);
}
.phone-input-lesson {
  position: relative;
}

.phone-input-lesson::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 44px;
  width: 1px;
  height: 44%;
  background-color: #cccccca6;
  transform: translateY(-50%);
}
.error {
  border: 1px solid red!important;
}
.payment .terms {
  display: flex;
  align-items: center;
}
.payment .terms label {
  display: inline-block;
  line-height: 1.3;
  margin-left: 5px;
}
.rtl .phone-input-lesson::after {
    left: 39px;
    height: 44%;
}
