/* Add By Abdul Samad*/
#global-loader {
    display: flex;
    position: fixed;
    z-index: 10000;
    width: 90%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #f9f9f9d1;
    top: 0;
}
/* Add By Abdul Samad*/

body {
  margin: 0;
  padding: 0;
  background-color: #ffff;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
div {
  margin: 0;
  padding: 0;
}

* {
  font-family: Kumbhsan-regular;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0px transparent;
  outline: 0px transparent;
  border: 1px solid var(--orange-one) !important;
}

@font-face {
  font-family: Kumbhsan-regular;
  src: url(KumbhSans-VariableFont_YOPQ_wght.ttf);
}

:root {
  --light-gray: #efefef;
  --orange-one: #ff570c;
}

/* ------------------------------- */
.airguide__form {
  /* background-color: var(--light-gray); */
  width: 1200px;
  max-width: 100%;
  margin: 5rem auto;
}

.airguide__form .form__head {
  text-align: center;
  /* margin-bottom: 2rem; */


  a{
    width: 100%;
    img{
      width: 320px;
      max-width: 85%;
    }
  }

  @media (max-width:400px) {
    h1,h2,h3{
      span{display: block;}
    }
  }
}

.airguide__form .form__head h1 {
  background-color: var(--orange-one);
  color: #fff;
  margin-top: 30px;
  padding: 20px 0;
  border-radius: 22px 22px 0px 0px;
}

.airguide__form .box_seperater {
  border: 1px solid var(--orange-one);
  /* box-shadow: 1px 1px 10px #ccc; */
  border-radius: 22px;
  padding: 10px 35px 25px 35px;
  display: flex;
  flex-wrap: wrap;
  flex-flow: wrap;
  margin-top: 15px;
  column-gap: 22px;
  &:first-child {
    border-radius: 0px 0px 22px 22px;
  }
}

.airguide__form .box_seperater section {
  display: flex;
  flex-wrap: wrap;
  flex-flow: wrap;
  column-gap: 22px;
}

.airguide__form .box_seperater .box-heading {
  display: block;
  width: 100%;
  text-transform: uppercase;
  position: relative;
  p{
    margin-bottom: 15px;
    text-transform: none;
  }
  &:has(h4) {
    color: #2a2a2a;
    margin-top: 25px;
  }
  &:has(h3) h3{
    color: var(--orange-one);
    position: relative;
    margin: 20px 0;
    &:has(~ p){
      /* margin-bottom: 0px; */
    }
    &::after,
    &::before {
      content: "";
      display: block;
      height: 4px;
      position: absolute;
      background-color: var(--orange-one);
      border-radius: 99px;
    }

    &::after {
      left: 105px;
      bottom: -10px;
      width: 30px;
    }
    &::before {
      left: 0px;
      bottom: -10px;
      width: 100px;
    }
  }
}

.airguide__form .box_seperater div.lenghty-field {
  width: calc(46% + 34px);
}
.airguide__form .box_seperater div.lenghty-3x-field {
  width: calc(69% + 61px);
}
.airguide__form .box_seperater div.full-w-field {
  width: 100% !important;
}
.airguide__form .box_seperater div {
  width: 23%;
  min-width: 265px;
  max-width: 100%;
  display: block;
  /* background-color: skyblue; */
}

.airguide__form form label {
  width: 100%;
  display: block;
  margin-top: 20px;
  margin-bottom: 7px;
  /* color: var(--orange-one);  */
}

.airguide__form form input[type="date"] {
  background-color: #ffff;
}
.airguide__form form input[type="time"],
[type="file"] {
  display: block;
  width: 100%;
  padding: 18.5px;
  transition: all ease 0.4s;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}
/* ------------------------------------------------------------------------ */
.airguide__form form input:not([type="radio"], [type="time"], [type="file"]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 20px;
  transition: all ease 0.4s;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

.airguide__form .box_seperater .select-bw.bordered {
  border: 1px solid #d9d9d9;
  border-radius: 11px;
  box-sizing: border-box;
}
.airguide__form .box_seperater .select-bw {
  padding: 20px 20px;
  height: fit-content;
  display: block;
  /* width: 200px ; */
}
.airguide__form .box_seperater .select-bw:has(span) {
  display: flex;
  flex-flow: wrap;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  span:has(input[type="radio"]:checked) {
    border-color: #ff570c;
  }
  span {
    border-radius: 99px;
    border: 1px solid #ccc;
    padding: 10px 20px;
    display: flex;
    column-gap: 10px;
    width: fit-content;
    transition: all ease 0.4s;
    input {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 16px;
      height: 16px;
      aspect-ratio: 1/1;
      margin: auto !important;
      outline: 2px solid var(--orange-one);
      border-radius: 50%;
      cursor: pointer;
      transition: all ease 0.4s;
    }
    input[type="radio"]:checked {
      background-color: var(--orange-one);
      outline-color: var(--orange-one);
    }
    input[type="radio"]:checked + label {
      color: var(--orange-one);
    }
    label {
      margin-top: 0px !important;
      margin-bottom: 0px !important;
      /* white-space: nowrap; */
      transition: all ease 0.4s;
      cursor: pointer;
    }
  }
}

input::placeholder {
  text-transform: capitalize;
  color: #a0a0a0;
}

.airguide__form .g-recaptcha{
margin: 10px auto;
margin-top: 20px;
width: fit-content;
}


.airguide__form input[type="submit"] {
  margin: 10px auto;
  max-width: 300px;
  background-color: var(--orange-one);
  color: #fff;
  font-weight: 700;

  &:hover {
    color: #fff;
    background-color: #000000;
  }
}




#success-msg{
  /* width: 200px; */
  max-width: 100%;
  text-align: center;

  padding: 13px;
  border-radius: 12px;
}
#success-msg.failed{
  background-color: #c0020252;
  color: #c00202;
}
#success-msg.success{
  background-color: #02c05152;
  color: #009d69;
}




@media (max-width: 1200px) and (min-width: 370px) {
  .airguide__form .box_seperater,
  .terms-conditions {
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 40px !important;
  }
}
@media (max-width: 370px) {
  .airguide__form .box_seperater,
  .terms-conditions {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 1020px) and (min-width: 621px) {
  .airguide__form {
    .box_seperater {
      div:not(:has(h3)) {
        width: 45% !important;
        box-sizing: border-box;
      }
    }
  }
}
@media (min-width: 720px) {
  .airguide__form .form__head h1 {
    font-size: 35px;
  }
}
@media (max-width: 720px) {
  .airguide__form .form__head h1 {
    font-size: calc(1.5vw + 15px);
  }

  .airguide__form .box_seperater {
    padding: 10px 15px 25px 15px !important;
  }

  .airguide__form input[type="submit"] {
    margin: 20px auto;
    max-width: 90% !important;
  }

  .airguide__form .g-recaptcha {
    margin: 20px auto;
    width: fit-content;
  }
}
@media (max-width: 620px) {
  .airguide__form .box_seperater div.lenghty-field {
    width: 100% !important;
  }
  .airguide__form .box_seperater div.lenghty-3x-field {
    width: 100% !important;
  }
  .airguide__form {
    .box_seperater {
      div {
        width: 100%;
        box-sizing: border-box;
      }
    }
  }
}

/* ------------------------------------------------------- */
/* NUMBER ARROW default REMOVE  */
/* ------------------------------------------------------- */
/* Chrome, Safari, Edge, Opera */
.airguide__form input::-webkit-outer-spin-button,
.airguide__form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.airguide__form input[type="number"] {
  -moz-appearance: textfield;
}

.select-card-parent {
  padding: 35px 0px;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  display: flex !important;
  flex-flow: wrap;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 35px;
  justify-content: center;
  input[type="radio"] {
    /*display: none;*/
      /* display: none; */
    opacity: 0;
    max-width: 0px !important;
    max-height: 0px !important;
  }

  .select-card {
    /* border: 5px solid red; */
    width: 280px !important;
    max-width: 280px !important;
  }
  
  /* Style the label to look like cards */
  .card {
    overflow: hidden;
    display: block;
    margin: 0px !important;
    padding: 22px min(5vw, 25px);
    cursor: pointer;
    max-width: fit-content !important;
    min-width: min(100%, 300px) !important;
    min-height: 270px;
    height: fit-content;
    border: 1px solid #bebebe;
    border-radius: 30px;
    background-color: white;
    transition: all ease 0.3s;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    /* -------TO CONTROL LEFT WHITE SPACE AT ONCE------- */

    span {
      display: block;
      position: relative;
      z-index: 2;
      box-sizing: border-box;
      color: #767676;
      font-weight: 500;
      .families_only{
        font-size: 13px;
        font-style: normal !important;
      }
    }

    /* ----------------------------------- */
    span.pkg-code {
      position: absolute;
      top: 0px;
      left: 0dvh;
      width: 100%;
      display: flex;

      text-align: center;
      border-radius: 10px;
      
      span {
        display: block;
        font-weight: 600;
        color: #ffff;
        padding: 6px 10px;
        flex: 1;
      }
      span:first-child {
        font-size: 13px;
        letter-spacing: 0.5px;
        background-color: #000;
        padding-left: 30px;
      }
      span:last-child {
        font-size: 13px;
        background-color: var(--orange-one);
      }
    }
    /* ----------------------------------- */

    span.pkg-name {
      color: var(--orange-one);
      font-size: 20px;
      margin-top: 34px;
      padding-bottom: 5px;
      margin-bottom: 15px;
      border-bottom: 1.5px solid var(--orange-one);
      font-weight: 600;
    }
    /* ----------------------------------- */

    span.bold {
      font-weight: 700;
      font-size: 17px;
    }
    /* ----------------------------------- */
    span.list {
      display: list-item;
      margin: 5px;
      margin-left: 20px;
      font-weight: 600;
    }

    /* ----------------------------------- */
    .card-footer {
      background-color: var(--orange-one);
      box-sizing: border-box;
      width: 100% !important;
      max-width: 100%;
      position: absolute;
      bottom: 0px;
      left: 0px;
      z-index: -1;
      border-radius: 0 0 27px 27px;
      padding: 15px 20px;
      text-align: center;

      .pricing {
        color: #ffff;
        &:first-child {
          font-size: 19px;
        }
        &:not(:first-child) {
          font-size: 15px;
          display: inline-flex;
          justify-content: center;
        }
        &:nth-child(even)::after {
          content: "|";
          margin-left: 12px;
          margin-right: 9px;
        }
      }

      a {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        color: #767676;
        font-weight: 600;
        text-decoration: none;

        &:hover {
          color: var(--orange-one);
          text-decoration: underline;
        }
      }
    }
    /* ----------------------------------- */
  }

  input[type="radio"]:checked + .card {
    background-color: var(--orange-one);
    border-color: #fff;
    color: white;
    /* --------------------- */
    span.pkg-name {
      border-color: #ffff;
    }

    span.pkg-code {
      background-color: rgba(255, 255, 255, 0.15);
      border-color: #fff;
    }

    span {
      color: #fff;
    }
    /* --------------------- */
    .card-footer {
      outline: 1px solid #ffff;
    }
    /* --------------------- */
    a {
      color: var(--orange-one);
      text-decoration: underline;
    }
  }
}

/* ------------------------------------------------------- */
.page_toggle_step {
  width: 100%;
  justify-content: center;
  margin: 2rem 0;
  display: flex;
  gap: 5px;
  button {
    background-color: var(--orange-one);
    color: #fff;
    width: 50px;
    height: 50px;
    border: 3px solid #ff510049;
    outline: 0;
    border-radius: 50%;
    position: relative;
    &::before {
      content: "";
      display: block;
      width: 23px;
      height: 23px;
      position: absolute;
      top: 12px;
      left: 10px;
      background-image: url(arrow-btn-icon.png);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      /* background-color: red; */
      filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%)
        hue-rotate(14deg) brightness(108%) contrast(101%);
    }
  }

  .arrow_next {
    border-radius: 0 12px 12px 0;
  }
  .arrow_prev {
    border-radius: 12px 0 0 12px;
    &::before {
      rotate: -180deg;
      transform-origin: center;
    }
  }
  p {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    text-align: center;
    padding: 15px 0;
    box-sizing: border-box;
    vertical-align: middle;
    border-radius: 50%;
  }
}

/* ---------------------------------------- */
.formstepbox {
  background-color: red;
  width: 100%;
  height: 100vh;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

.formstepbox.green {
  background-color: green;
}
.formstepbox.show {
  display: block;
}

/* ======================================================
====================================================== */

/* -------------------------------------------------- */
/* -------------------------------------------------- */

.hidden-field {
  display: none !important;
  visibility: hidden !important;
  input {
    display: none !important;
    visibility: hidden !important;
  }
  label {
    display: none !important;
    visibility: hidden !important;
  }
}
.highlight {
  visibility: visible;
}
/* -------------------------------------------------- */
/* -------------------------------------------------- */

.mb-1 {
  margin-bottom: 0.3rem;
}
.mb-2 {
  margin-bottom: 0.6rem;
}
.mb-3 {
  margin-bottom: 0.8rem;
}
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* target all as None mendatory */
.none-mendatory {
  label::after {
    content: "";
    display: none !important;
  }
}

/* target all as mendatory  */
label:not(.card, .not-mendatory)::after {
  content: "*";
  color: red;
  padding-left: 5px;
}
.fa-asterik::after {
  content: "*";
  color: red;
  padding-left: 5px;
}

/* -------------------------------------------------- */
/* -------------------------------------------------- */
.tooltip {
  position: relative;
  &::before {
    content: attr(tool-tip);
    position: absolute;
    /* top: -15px; */
    bottom: 95px;
    font-size: 14px;
    background-color: #444444;
    color: #fff;
    left: -2px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
    padding: 5px 8px;
  }

  /* &:has(input:focus){
    &::before {
      visibility: visible;
      opacity: 1;
      
      animation: fadeTooltip 4s linear forwards;
    }
  } */
  &:hover {
    &::before {
      visibility: visible;
      opacity: 1;
      animation: fadeTooltip 4s linear forwards;
    }
  }
}

/* ===================================== */
@keyframes fadeTooltip {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  10% {
    opacity: 1;
    visibility: visible;
  }
  95% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* ======================================= */
/* Style for the terms and conditions container */
.terms-conditions {
  border: 1px solid var(--orange-one);
  padding: 25px 20px;
  padding-top: 40px;
  border-radius: 22px;
  margin-top: 15px;
  position: relative;
}
.terms-container {
  max-width: 100%;
  width: 100% !important;
  max-height: 320px; /* Adjust the height as needed */
  overflow-y: scroll;
  border: 1px solid #ccc;
  padding: 20px;
  padding-top: 0px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  position: relative;
  box-sizing: border-box;
  border-radius: 5px;

  h2 {
    position: sticky;
    top: 0px;
    left: 0px;
    /* border: 1px solid red; */
    background-image: linear-gradient(#ffffff 60%, #00000000);
    padding: 10px 0 15px 0;
    font-size: calc(1.3vw + 12px);
  }
  p,
  li {
    margin-top: 10px;
    font-size: calc(0.4vw + 12px);
    line-height: 1.4;
    &::marker{
      font-weight: bolder;
    }
  }
  ul {
    padding-left: calc(2vw + 5px);
  }

  .more_space_bottom{
    /* background-color: red; */
    margin-top: 30px;
    .box_main_head{
      margin-bottom: 20px;
    }
    li{
      margin-bottom: 25px;
      b{
        display: block;
        margin-bottom: 10px;
      }
    }
  }
}

.checkbox-container {
  display: flex;
  align-items: center;
  width: fit-content !important;
  margin: auto;
  margin-top: 15px;
  white-space: wrap;
}

.checkbox-container input[type="checkbox"] {
  width: 20px !important;
}
.checkbox-container label {
  margin: 0px !important;
}

.agree-text {
  &::after {
    display: none;
  }
}

/* --------------------------------------  */
/* --------------------------------------  */
.agedisplay,
.pdf-dwnld-container {
  position: relative;
  #age,
  a {
    position: absolute;
    right: 0px;
    top: 19px;
    color: #a0a0a0;
    text-decoration: none;
  }
}

/* --------------------------------------  */
/* VALIDATION FORM AND BLA BLA  */
.alphanumeric-input {
  text-transform: uppercase;
}
/* --------------------------------------  */
/* --------------------------------------  */
.dropdown-content {
  position: absolute;
  /* border: 1px solid #ddd; */
  max-height: 200px;
  overflow-y: auto;
  display: none;
  background-color: #fff;
  z-index: 1000;
  width: 100%;
}

.dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #ffeeda;
}

/* --------------------------------------- */
div:has(span.floating-btn) {
  position: relative;
  .floating-btn.links {
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0px;

    a {
      color: var(--orange-one);
      white-space: nowrap;
      text-decoration: none;
      display: block;
      font-size: 14px;
      font-weight: 500;
      &:hover {
        text-decoration: underline;
      }
    }

    a:nth-child(odd)::after {
      content: "";
      padding: 0 7px;
    }

    &:hover {
      outline: 0;
    }
  }

  @media (min-width: 400px) {
    .floating-btn.links {
      a:nth-child(odd)::after {
        content: "|";
      }
    }
  }
  .floating-btn {
    width: fit-content;
    cursor: pointer;
    border-radius: 99px;
    position: absolute;
    right: 37px;
    top: 27px;
    box-sizing: border-box;
    padding: 10px 25px;
    color: #ffff;
    background-color: #084afe;
    z-index: 1;
    transition: all ease 0.3s;

    &:hover {
      background-color: #fff;
      color: #084afe;
      outline: 1px solid #084afe;
    }
  }
}

@media (max-width: 640px) {
  div:has(span.floating-btn) {
    .floating-btn {
      right: 50%;
      transform: translateX(50%);
      top: 90px;
    }
    .floating-btn + div {
      /* background-color: red; */
      margin-bottom: 90px !important;
    }

    /* ------------Style Two------------- */
    .floating-btn.links {
      justify-content: center;
      width: 390px !important;
      max-width: 100%;
      padding: 0 25px;
    }
  }
}

/* =========================================================== */

.verify-step {
  text-align: center;
  width: 600px !important;
  max-width: 100% !important;
  margin: auto;

  h1 {
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 39px;
  }

  p {
    /* font-weight: 600; */
    /* margin-bottom: 0px; */
    font-size: 22px;
    margin-bottom: 8px !important;
    /* white-space: nowrap; */
  }
  label {
    display: block;
    width: 100% !important;
    margin: auto;
    margin-bottom: 18px !important;
    margin-top: 0px !important;
    /* white-space: nowrap; */
    span {
      display: inline-flex !important;
      font-weight: 600;
      font-style: italic;
    }
  }
  .guide-tip {
    /* width: 310px !important; */
    display: block;
    color: #009b5d;
    margin: 0px auto 15px;
    &:has(a) {
      color: #000000;
    }
    a {
      color: #0a3fd3;
    }
  }
  .next-step {
    width: fit-content !important;
    margin: auto;
    margin-top: 5px;
    padding: 15px 40px !important;
    background-color: var(--orange-one);
    color: #ffff;
    border-radius: 99px !important;
    font-size: 17px !important;
    cursor: pointer;
    &:hover {
      scale: 0.98;
    }
  }

  input {
    max-width: 100%;
    padding: 10px !important;
    text-align: center;
    font-size: 39px !important;
    border: 1px solid #bebebe;
    border-radius: 11px;
    transition: all ease 0.3s;
    box-sizing: border-box;
    /* margin-top: 20px; */
    &[type="text"] {
      margin-bottom: 13px;
    }
  }

  .verification-code {
    /* padding: 0px !important; */
    letter-spacing: 20px !important;
  }
  .verification-code:valid {
    color: #2e2e2e;
  }
  .verification-code:invalid {
    color: #c00202;
  }
}



/* -------------------------------  */
.url-readmore{
  background-color: var(--orange-one);
  color: #ffff;
  padding: 7px 30px;
  width: fit-content;
  display: block;
  margin: 20px auto;
  text-decoration: none;
  border-radius: 22px;
}





/* =========================================== */
/* =========================================== */
.airguide__form .box_seperater .select-bw:has(span) {
  display: flex;
  flex-flow: wrap;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  span:has(input[type="radio"]:checked) {
    border-color: #ff570c;
  }
  span {
    border-radius: 99px;
    border: 1px solid #ccc;
    padding: 10px 20px;
    display: flex;
    column-gap: 10px;
    width: fit-content;
    transition: all ease 0.4s;
    input {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 16px;
      height: 16px;
      aspect-ratio: 1/1;
      margin: auto !important;
      outline: 2px solid var(--orange-one);
      border-radius: 50%;
      cursor: pointer;
      transition: all ease 0.4s;
    }
    input[type="radio"]:checked {
      background-color: var(--orange-one);
      outline-color: var(--orange-one);
    }
    input[type="radio"]:checked + label {
      color: var(--orange-one);
    }
    label {
      margin-top: 0px !important;
      margin-bottom: 0px !important;
      /* white-space: nowrap; */
      transition: all ease 0.4s;
      cursor: pointer;
    }
  }
}



.ui-datepicker-title{
  display: flex;
  select{
    flex: 1;
  }
}
.ui-widget-header a {
  top: 50% !important;
  transform: translateY(-50%);
}



.is_valid-or-not {
          position: absolute;
        right: 0px;
        top: 19px;
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 600;
}

.is_valid-or-not.valid {
    color: #16a34a;
}

.is_valid-or-not.invalid {
    color: #dc2626;
}