.modal {
  z-index: 11111;
}

.modal-content {
  position: relative;
}

.modal-content::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #359bd8;
  width: 98%;
  height: 98%;
  z-index: -1;
}

.modal-header-start {
  position: relative;
  /* height: 580px; */
}

.btn-close.position-relative {
  top: 23px;
  color: #484848;
  opacity: 1;
}

.floated-btn {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 10;
}

.p-top-0 {
  padding-top: 0px;
}

.modal-header-start::before {
  content: "";
  position: absolute;
  bottom: 114px;
  left: 86px;
  width: 284px;
  height: 284px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(147, 214, 255, 0.396) 0%,
    rgba(24, 25, 27, 0) 100%
  );
  background: radial-gradient(
    circle at 50% 50%,
    rgba(147, 214, 255, 0.396) 0%,
    rgba(24, 25, 27, 0) 89%
  );
  opacity: 0.5;
  backdrop-filter: blur(300px);
}

.modal-header.position-relative::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -25px;
  width: 207px;
  height: 207px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(147, 214, 255, 0.396) 0%,
    rgba(24, 25, 27, 0) 100%
  );
  background: radial-gradient(
    circle at 50% 50%,
    rgba(147, 214, 255, 0.396) 0%,
    rgba(24, 25, 27, 0) 89%
  );
  opacity: 0.5;
  backdrop-filter: blur(300px);
}

.modal-content {
  border-radius: 0;
  background: #efefef;
  max-width: 1090px;
}

.modal-header .modal-title {
  font-family: "Montserrat", sans-serif;
  font-weight: Bold;
  font-size: 24px;
  color: #202b3a;
  box-shadow: 0px 8px 30px 0px #ffffff40;
  box-shadow: 0px 4px 8px 0px #ffffff0f;
}

.stepper-nav {
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 50px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #999;
}

.step-item.active {
  color: #fff;
}

.step-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #049d09;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 
.step-item.active .step-circle {
  border-color: #00FF47;
}

.step-dot {
  width: 6px;
  height: 6px;
  background-color: #00FF47;
  border-radius: 50%;
} */

.step-label {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.step-line {
  height: 1px;
  width: 115px;
  background-color: #999;
  margin-top: -28px;
}

.step-item.active + .step-line {
  background-color: #989898;
}

#step1 #step1Indicator {
  align-items: end;
}

#step1 #step2Indicator {
  align-items: flex-start;
}

#step1 #step2Indicator .step-circle {
  background: #d9d9d9;
  border: none;
}

#step1Indicator .step-label {
  margin-right: -53px;
  color: #454545;
}

#step2Indicator .step-label {
  margin-left: -40px;
  color: #bababa;
}

#step2 #step2Indicator .step-label {
  color: #454545;
}

#step2 .step-circle {
  background: #049d09;
}

#step2 #step1Indicator {
  align-items: end;
}

#step2 #step2Indicator {
  align-items: flex-start;
}

#step2 #step2Indicator .step-circle {
  background: transparent;
}

/* .stepper-nav {
  display: flex;
  justify-content: center;  
} */

.stepper-step-connector {
  flex: 1;
  height: 0.125rem;
  background: #5755d7;
  transition: background-color 0.15s ease-in-out;
  width: 118px;
  margin: 0px 1rem;
}

.stepper-nav .step {
  /* width: 120px; */
  text-align: center;
  font-weight: 500;
  color: #999;
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.stepper-nav .active {
  color: #0d6efd;
}

.hidden {
  display: none;
}

.schedule-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.calendar {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  background: #f9f9f9;
  border: 1px solid #b6c1ca !important;
  margin-bottom: 3rem;
  z-index: 1;
}

.calendar-container {
  display: flex;
  border-bottom: 1px solid #dce0e5;
  font-family: "Montserrat", sans-serif;
}

#monthLabel {
  color: #454545;
  font-weight: 500;
  font-size: 14px;
}

#nextMonth,
#prevMonth {
  color: #777;
  font-size: 15px;
  border-color: #dce0e5;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  position: relative;
}

#nextMonth:hover,
#prevMonth:hover {
  color: #fff;
  border-color: #359bd8;
  background: #359bd8;
}

.calendar .text-end.p-3 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  gap: 15px;
}

.calendar-left {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #e0e0e0;
}

.calendar-right {
  width: 150px;
  overflow-y: auto;
  max-height: 300px;
}

.calendar-right .border {
  cursor: pointer;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 5px;
}

.calendar-grid div {
  padding: 7px;
  border-radius: 6px;
  cursor: pointer;
}

.calendar-grid .today-date {
  background: #359bd8;
  color: #ffffff;
  font-weight: 500;
}

#calendarGrid .text-center.rounded.selected-date {
  background: #359bd8;
  color: #ffffff;
}

#calendarGrid .text-center.rounded {
  color: #454545;
  font-size: 14px;
  font-weight: 500;
}

#calendarGrid .text-center.text-muted {
  color: #bababa !important;
}

.calendar-grid .day-name {
  font-weight: bold;
  color: #666;
  cursor: default;
}

.calendar-container #timeSlots .normal-time {
  color: #636363;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.calendar-container #timeSlots .selected-time {
  background: #e0edff !important;
  border: 1px solid #00aadf !important;
  color: #636363 !important;
  font-size: 14px;
  font-weight: 500;
}

.calendar-grid .selected {
  background-color: #359bd8;
  color: white;
}

.cancel {
  background: #fff;
  color: #636363;
  border: 1px solid #dce0e5;
  border-radius: 8px;
  padding: 0.4rem 2rem;
  font-size: 14px;
  font-weight: 500;
}

#toStep2 {
  background: #359bd8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.4rem 2rem;
}

.time-option {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  margin: 4px;
  color: #555;
}

.time-option:hover {
  background-color: #e0f0ff;
}

.time-option.active {
  background-color: #359bd8;
  color: white;
  font-weight: 500;
}

.check-icon {
  font-size: 4rem;
  color: green;
}

.schedule-info {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #202b3a;
  line-height: 50px;
  margin-top: -38px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-flow: column;
}

.editdatetime {
  display: flex;
  align-items: center;
}

#editDateTime {
  margin-left: 10px;
}

.schedule-info strong {
  /* color: #359BD8; */
  font-weight: 600;
  color: #202b3a;
  margin: 10px 0;
}

.schedule-info span {
  font-size: 14px;
  line-height: 25px;
  border: 1px solid #bababa;
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
}

#detailsForm {
  background: #fff3;
  z-index: 1;
  max-width: 533px;
  width: 100%;
}

#detailsForm button,
#contactFormContainer .submit-btn {
  background: #d6d6d6;
  color: #a4a4a4;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-weight: 600;
  font-family: "Montserrat";
  font-size: 18px;
  text-transform: uppercase;
}

#detailsForm [type="submit"]:not(:disabled),
#detailsForm button:not(:disabled),
#contactUsForm .submit-btn [type="submit"]:not(:disabled),
#contactUsForm .submit-btn:not(:disabled) {
  background: #359bd8;
  color: #fff;
}

/* #detailsForm textarea {
  font-size: 14px;
  line-height: 18px;
} */

#detailsForm textarea.form-control {
  font-size: 16px;
  line-height: 23px;
  min-height: 90px;
  padding-top: 15px;
}

#step1,
#step2 {
  margin-top: -35px;
}

.paragraph-style {
  width: 43%;
}

#step2 #backToStep1 {
  color: #484848;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-image: url("../images/icon/corner-up-leftb.svg");
  background-repeat: no-repeat;
  width: 100px;
}

#editDateTime {
  background-image: url("../images/icon/edit.svg");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

#step3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: column;
  height: 540px;
}

#step3 .text-success {
  font-size: 9rem;
  color: #049d09 !important;
}

#step3 .text-success p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #454545;
}

#step3 .consultation-message {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #454545;
  position: relative;
}

#step3 #confirmDateTime {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  color: #454545 !important;
}

#step3 .text-decoration-underline {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #636363;
  font-weight: 500;
  margin-top: 35px;
}

.custom-alert-popup {
  border-radius: 10px;
  padding: 20px;
}

.swal2-confirm {
  padding: 6px 20px;
  font-size: 14px;
  border-radius: 6px;
}

#alertModal {
  background: #00000070;
}

#alertModal .modal-content::before {
  display: none;
}

#alertModal .modal-content.text-center.p-4 {
  width: 529px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #efefef;
}

#alertModal button {
  background: #359bd8;
  color: #efefef;
  border: none;
  border-radius: 8px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
}

#alertModal p {
  color: #454545;
  box-shadow: 0px 8px 30px 0px #ffffff40;
  --webkit-box-shadow: 0px 8px 30px 0px #ffffff40;
  --moz-box-shadow: 0px 8px 30px 0px #ffffff40;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 500;
}

/* Alert message UI CSS*/
#errorModal,
#timeoutModal {
  background: #00000075;
  z-index: 111111;
}

#errorModal .modal-dialog,
#timeoutModal .modal-dialog {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}

#errorModal .modal-content,
#timeoutModal .modal-content {
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 570px;
  max-width: 100%;
  border: none;
  background: #fff;
}

#timeoutModal .modal-content {
  width: 480px;
}

#errorModal .modal-body,
#timeoutModal .modal-body {
  margin: 0;
  padding: 0;
}

#errorModal .modal-header-custom,
#timeoutModal .modal-header-custom {
  border: none;
  background-color: #359bd8;
  /* Blue bar */
  color: #fff;
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  padding: 15px;
}

#errorModal .modal-body h3,
#timeoutModal .modal-body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin: 20px 0;
}

#errorModal .modal-body p,
#timeoutModal .modal-body p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #404040;
}

#timeoutModal .modal-body p {
  padding-top: 25px;
}

#errorModal .modal-body p span,
#timeoutModal .modal-body p span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #359bd8;
}

#errorModal .error-link,
#timeoutModal .error-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #359bd8;
  font-weight: 500;
  text-decoration: underline;
}

#errorModal .error-link:hover {
  color: #359bd8;
}

#errorModal .btn-custom,
#timeoutModal .btn-custom {
  background-color: #359bd8;
  border: none;
  padding: 0.5rem 2rem;
  font-size: 14px;
  border-radius: 8px;
  color: #efefef;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 15px;
}

#errorModal .btn-custom:hover,
#timeoutModal .btn-custom:hover {
  background-color: #359bd8;
}

#detailsForm .form-group p {
  color: #202b3a;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

/*contact us form css start*/
#contactFormContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#contactUsForm {
  background: rgba(255, 255, 255, 0.2);
  padding: 35px;
}

.contact-us-header {
  padding: 50px;
}

.contact-us-header .btn-close {
  color: #484848;
  opacity: 1;
}

.contact-us-header .modal-title {
  color: rgba(32, 43, 58, 1);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

#contactUsForm p {
  color: #202b3a;
  font-size: 14px;
  font-weight: 400;
}

/* .contact-us-header .modal-header{
  padding-bottom: 70px;
} */
#contactFormContainer .iti .iti__selected-dial-code {
  margin-left: 23px;
  font-size: 16px;
  font-weight: 500;
}
#contactFormContainer .iti__country-container .iti__selected-country,
#detailsForm .iti__country-container .iti__selected-country {
  background: #e3e3e3;
  padding: 0;
  margin: 0;
  width: 58px;
  height: 56px;
  border-radius: 4px;
}
#contactFormContainer .iti__country-container .iti__selected-country {
  color: inherit;
}
/* #contactFormContainer .iti__country-container .iti__selected-country{
  width: auto;
} */

.iti__flag {
  box-shadow: none !important;
}

.iti__flag {
  transform: scale(1.3);
  transform-origin: center;
  margin-left: 3px;
}
.iti__selected-flag {
  padding: 6px 10px !important;
}
.iti__search-input {
  height: 35px;
}

#contactFormContainer .iti__search-clear,
#detailsForm .iti__search-clear {
  background: transparent;
  color: transparent;
}
.contact-mobile {
  margin: 12px 0;
  width: 100%;
}

#contactFormContainer
  .iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown,
#detailsForm .iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

/* .iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  margin: 12px 0;
  width: 100%;
  display: flex;
} */

#mobileInput {
  padding-left: 55px !important;
  margin-left: 65px !important;
}

/* .iti .iti__selected-dial-code {
  display: none;
} */

#detailsForm .form-label {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0 0;
}
.form-check-group {
  padding: 10px 0;
}

.form-control .form-check-label {
  color: #9a9a9a;
}

.form-check-input:checked {
  background-color: #359bd8;
  border-color: #359bd8;
}

.form-check-label {
  color: #9a9a9a;
  font-weight: 500;
  font-size: 16px;
}

.form-check-input:checked + .form-check-label {
  color: #359bd8;
}

.form-check-input {
  background-color: rgba(217, 217, 217, 1);
}

#contactUsForm .form-control {
  border: none;
  margin: 12px 0;
  line-height: 54px;
  padding-top: 2px;
  padding-bottom: 0;
}

#contactUsForm .form-control::placeholder {
  color: #9a9a9a;
}

#contactMobile {
  position: relative;
}

#successContainer .text-success {
  font-size: 5rem;
  color: #049d09 !important;
  margin: 50px 0;
}
#successContainer p {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #454545;
}
#successContainer h5 {
  font-size: 26px;
}

.iti__arrow {
  background-image: url("../images/icon/down.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  width: 12px;
  height: 7px;
  margin-left: 10px;
}
.iti__arrow--up {
  transform: rotate(180deg);
}

#contactMobile .iti {
  width: 100%;
  display: flex;
  align-items: center;
}
#contactMobile .iti input {
  width: 90%;
  padding-right: 30px;
}
#contactMobile .validation-icon {
  position: absolute;
  right: 10px;
  font-size: 20px;
  top: 11px;
}
#contactMobile .valid {
  color: green;
}
#contactMobile .invalid {
  color: red;
}

.validation-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

.validation-icon.valid {
  color: #28a745;
}

.validation-icon.invalid {
  color: #dc3545;
}

.mobileNumber {
  position: relative;
}

@media (max-width: 1366px) {
  .modal-dialog {
    width: 65%;
  }

  .paragraph-style {
    width: 100%;
    font-size: 13px;
  }

  .stepper-nav {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .calendar-right {
    width: 110px;
  }

  .form-control::placeholder {
    font-size: 13px;
  }

  #detailsForm textarea.form-control {
    font-size: 13px;
    line-height: 18px;
    padding-top: 5px;
  }

  .calendar-grid div {
    padding: 4px;
    font-size: 13px;
  }

  #nextMonth,
  #prevMonth {
    width: 24px;
    height: 24px;
    font-size: 11px;
    padding: 0;
    border-radius: 5px;
  }

  .calendar-container #timeSlots .normal-time {
    font-size: 11px;
    margin: 0 !important;
  }

  #monthLabel {
    font-size: 12px;
  }

  .calendar-grid div {
    padding: 4px;
  }

  .modal-header-start::before {
    left: 0;
    bottom: 0;
  }

  .calendar .text-end.p-3 {
    padding: 7px !important;
  }

  .cancel,
  #toStep2 {
    font-size: 11px;
  }

  #calendarGrid .text-center.rounded {
    font-size: 12px;
    line-height: 19px;
  }

  .schedule-info span {
    font-size: 11px;
    padding: 7px;
  }

  #editDateTime {
    width: 19px;
    height: 19px;
    background-size: 13px;
  }

  #detailsForm .form-group {
    padding: 15px !important;
  }

  .form-control {
    font-size: 13px;
    line-height: 18px;
    padding-left: 10px;
  }

  textarea {
    height: 80px;
  }

  #detailsForm button {
    padding: 10px 0;
    font-size: 14px;
  }

  #detailsForm .form-group p {
    /* font-size: 13px; */
    margin-bottom: 10px;
  }

  #step2 #backToStep1 {
    background-size: 18px;
    font-size: 13px;
  }

  #step3 .text-success {
    font-size: 4rem;
  }

  #step3 .consultation-message {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #step3 #confirmDateTime {
    padding-left: 0;
    padding-right: 0;
  }

  #step3 .text-decoration-underline {
    font-size: 14px;
  }

  .btn-close.position-relative {
    top: 10px;
  }

  #contactFormContainer .iti .iti__selected-dial-code {
    font-size: 13px;
  }
  #detailsForm .form-label,
  .form-check-label {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .modal-header.position-relative::before,
  .modal-header-start::before {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1199px) {
  .paragraph-style {
    width: 62%;
  }

  #step3 #confirmDateTime {
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal-header.position-relative::before {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1150px) {
  .modal-header-start::before {
    bottom: 0;
    left: 0;
    opacity: 0.3;
  }
}

@media (max-width: 1100px) {
  .modal-dialog {
    width: 60%;
  }

  .modal-header.position-relative {
    padding: 0;
    padding-top: 15px;
  }

  .btn-close.position-relative {
    top: -8px;
    font-size: 20px;
  }

  .modal-header .modal-title,
  .schedule-info strong {
    font-size: 24px;
  }

  .contact-us-header .modal-title {
    font-size: 20px;
  }

  .paragraph-style {
    font-size: 16px;
    width: 100%;
  }

  .stepper-nav {
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .step-label {
    font-size: 12px;
  }

  #nextMonth,
  #prevMonth {
    width: 32px;
    height: 32px;
    font-size: 11px;
    padding: 0;
    border-radius: 5px;
  }

  #step1,
  #step2,
  #step3 {
    /* height: 450px; */
    height: auto;
    overflow-y: auto;
  }

  #calendarGrid .text-center.rounded {
    font-size: 14px;
    line-height: 19px;
  }

  .calendar-grid div {
    padding: 4px;
    font-size: 14px;
  }

  .calendar-right {
    width: 120px;
  }

  .calendar-container #timeSlots .normal-time {
    font-size: 14px;
    margin: 0 !important;
  }

  #monthLabel {
    font-size: 14px;
  }

  .cancel,
  #toStep2 {
    font-size: 14px;
  }

  .calendar .text-end.p-3 {
    padding: 7px !important;
  }

  .schedule-info strong {
    margin-top: 50px;
    margin-bottom: 15px;
  }

  .schedule-info {
    line-height: 1.2;
  }

  .schedule-info span {
    font-size: 14px;
    padding: 7px;
  }

  #editDateTime {
    width: 19px;
    height: 19px;
    background-size: 13px;
  }

  #detailsForm .form-group {
    padding: 15px !important;
  }

  .form-control {
    font-size: 16px;
    line-height: 30px;
    padding-left: 10px;
  }

  #detailsForm {
    background: transparent;
    width: 90%;
  }

  .form-control::placeholder {
    font-size: 14px;
  }

  textarea {
    height: 80px;
  }

  #detailsForm textarea.form-control {
    font-size: 16px;
    padding-top: 10px;
  }

  #detailsForm button {
    padding: 10px 0;
    font-size: 18px;
  }

  #detailsForm .form-group p {
    /* font-size: 13px; */
    margin-bottom: 10px;
    text-align: center;
  }

  #step2 #backToStep1 {
    background-size: 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
  }

  #step3 .text-success {
    font-size: 150px;
  }

  #step3 .consultation-message {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #step3 #confirmDateTime {
    padding-left: 0;
    padding-right: 0;
  }

  #step3 .text-decoration-underline {
    font-size: 14px;
  }

  .modal-header-start::before {
    width: 220px;
    height: 220px;
    display: none;
  }

  .modal-header.position-relative::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  #errorModal .modal-content {
    width: 450px;
  }

  #errorModal .modal-header-custom {
    font-size: 18px;
    padding: 10px;
  }

  #errorModal .modal-body h3 {
    font-size: 16px;
    margin: 15px 0 10px 0;
  }

  #errorModal .modal-body p {
    font-size: 12px;
    margin-bottom: 0;
  }

  #errorModal .btn-custom {
    margin: 0;
    font-size: 12px;
  }

  #contactUsForm {
    padding: 24px;
  }

  #contactUsForm p {
    padding-bottom: 20px;
  }

  #contactFormContainer {
    margin-bottom: 50px;
  }

  .contact-us-header .btn-close {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .contact-us-header {
    padding: 20px;
    padding-top: 0;
  }

  .contact-us-header .modal-header {
    padding: 20px;
  }
  .p-top-0 {
    padding-top: 0px;
  }

  .contact-us-header .modal-title {
    padding-top: 50px;
  }

  .form-check-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  #contactUsForm textarea {
    height: 120px;
  }
}

@media (max-width: 991px) {
  #contactFormContainer #mobileInput {
    height: 40px;
  }

  .modal-header-start::before {
    display: none;
  }

  .modal-header.position-relative::before {
    opacity: 0.2;
    border-radius: 50%;
  }

  .paragraph-style {
    width: 100%;
  }

  #step3 #confirmDateTime {
    padding-left: 0;
    padding-right: 0;
  }

  .modal-dialog {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
  }

  #step1,
  #step2,
  #step3 {
    height: 100%;
  }

  #step1 {
    margin-top: 0;
  }

  .iti {
    display: flex;
  }

  .iti--container {
    z-index: 11111;
  }

  .form-check-group {
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
  }

  .contact-us-header .btn-close {
    font-size: 13px;
    margin-bottom: 0;
  }
  .contact-us-header .modal-header {
    padding-bottom: 20px;
  }
  .floated-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
  }
  .p-top-0 {
    padding-top: 0px;
  }
  .contact-us-header .modal-body {
    /* padding-top: 0; */
  }
  #contactFormContainer .modal-header .modal-title {
    padding-top: 0;
    /* padding-bottom: 30px; */
  }
  #contactUsForm .form-control {
    line-height: 28px;
  }
  #contactFormContainer .iti__country-container .iti__selected-country,
  #detailsForm .iti__country-container .iti__selected-country {
    height: 40px;
  }
}

@media (max-width: 820px) {
  #errorModal .modal-header-custom {
    font-size: 18px;
  }

  #errorModal .modal-body h3 {
    font-size: 15px;
  }

  #errorModal .modal-body p {
    font-size: 12px;
  }

  #errorModal .btn-custom {
    font-size: 12px;
  }

  #errorModal .modal-content {
    width: 400px;
  }

  .btn-close.position-relative {
    top: -16px;
  }
}

@media (max-width: 650px) {
  /* #errorModal .modal-dialog {
    margin: 0;
    display: flex;
  } */

  .modal-dialog {
    width: auto;
    max-width: 600px;
  }

  #errorModal .modal-content {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  #errorModal .modal-header-custom {
    font-size: 15px;
    padding: 5px;
  }

  #errorModal .modal-body h3 {
    font-size: 14px;
  }

  #errorModal .modal-body p {
    font-size: 12px;
  }

  #errorModal .btn-custom {
    margin: 0;
  }
}

@media (max-width: 540px) {
  #alertModal .modal-dialog {
    width: 97%;
  }

  #alertModal p {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 500px) {
  .modal-header-start::before {
    display: block;
  }

  .modal-content {
    height: 100vh;
  }
  #contactModal .modal-content {
    height: auto;
  }
  #contactModal .contact-us-header {
    height: 100%;
  }
  #contactFormContainer {
    margin-bottom: 0;
  }

  .modal-header .modal-title {
    font-size: 16px;
    /* margin-top: 1rem; */
  }

  .modal-header-start p {
    font-size: 12px;
  }

  .modal-header.position-relative::before {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.2;
    display: none;
  }

  .calendar-container {
    flex-flow: column;
    width: 100%;
  }

  .calendar-right {
    width: 100%;
    max-height: 75px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .calendar-container #timeSlots .normal-time {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-content::before {
    display: none;
  }

  .modal-dialog.modal-dialog-centered.modal-lg.modal-xl {
    padding: 10px;
    margin: 0;
  }

  /* .modal-header.border-0 {
    margin-top: 1rem;
  } */
  #step1 .modal-header.border-0 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .calendar {
    width: 100%;
    margin-top: 15px;
  }

  .schedule-info {
    margin-top: 0;
  }

  .schedule-info span {
    padding: 10px 10px;
    display: flex;
  }

  #detailsForm {
    width: 100%;
    height: auto;
  }

  #detailsForm .form-group.mb-3.p-5 {
    padding: 0 !important;
  }

  .modal-header-start::before {
    display: none;
  }

  #detailsForm textarea {
    height: 100px !important;
  }

  #step3 {
    height: 100%;
  }

  #step3 h5 {
    color: #202b3a;
  }

  #step3 .text-success {
    font-size: 5rem;
    margin: 2rem auto !important;
  }

  #step3 p {
    color: #454545;
    font-size: 1rem;
    font-weight: 600;
  }

  #confirmDateTime {
    color: #454545 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 1rem 5rem;
    line-height: 35px;
    margin-bottom: 2rem;
  }

  #step3 p.text-decoration-underline {
    color: #636363;
    font-size: 14px;
    font-weight: 500;
  }

  .editdatetime {
    display: flex;
    align-items: flex-end;
    flex-flow: column-reverse;
    margin-top: 15px;
  }
  #detailsForm .form-label {
    font-size: 12px;
  }
  .form-check-label {
    font-size: 12px;
  }
  #scheduleModal .modal-content {
    height: auto;
    padding: 10px !important;
  }
  .btn-close.position-relative {
    font-size: 14px;
  }
  .form-check-group {
    justify-content: space-between;
    flex-flow: row;
    margin-bottom: 0;
  }
  #step2 #backToStep1 {
    font-size: 14px;
  }
  .stepper-nav {
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  #editDateTime {
    margin-bottom: 10px;
  }

  .schedule-info strong {
    margin-bottom: 0;
    margin-top: 20px;
  }

  .modal-header .modal-title,
  .schedule-info strong {
    font-size: 20px;
  }

  .paragraph-style {
    width: 100%;
  }

  .btn-close.position-relative {
    top: -16px;
  }

  #errorModal .modal-dialog,
  #timeoutModal .modal-dialog {
    margin: 0;
    padding: 15px;
  }

  .form-control::placeholder {
    font-size: 12px;
  }

  .form-control {
    font-size: 14px;
  }

  #detailsForm textarea.form-control {
    font-size: 14px;
  }

  #contactUsForm {
    background: transparent;
    padding: 0;
  }

  .contact-us-header {
    padding: 15px;
    height: 100vh;
  }

  #contactUsForm .form-control {
    border: none;
  }
}

@media (max-width: 420px) {
  #confirmDateTime {
    padding: 1rem 3rem;
  }
}

@media (max-width: 370px) {
  #confirmDateTime {
    padding: 1rem;
  }

  .schedule-info span {
    padding: 10px 40px;
    font-size: 12px;
  }

  .modal-header-start p {
    font-size: 12px;
  }

  .modal-header .modal-title {
    margin-top: 0;
  }

  .modal-header.border-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .modal-content {
    padding: 10px;
  }

  .btn-close.position-relative {
    margin-right: 0;
    right: 10px;
    top: -7px;
  }

  #detailsForm .form-group p {
    color: #202b3a;
    font-weight: 500;
  }

  #detailsForm button {
    padding: 6px 0;
  }

  #step3 #confirmDateTime {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.labelWrapper {
  position: relative;
  background-color: #e3e3e3;
  border-radius: 4px;
  overflow: hidden !important;
}
.labelWrapper input,.labelWrapper textarea{
  background-color: transparent !important;
  position: relative;
  z-index: 2;
}
.formLabel {
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2rem;
  left: 25px;
  color: rgba(154, 154, 154, 1);
  position: absolute;
  top: 7px;
  z-index: 1;
}

.formLabel span {
  color: rgba(255, 0, 0, 1);
}
/* 
.iti__country-container{
    max-width: 100px !important;
    overflow: hidden;
} */

#contactFormContainer #mobileInput {
  margin-left: 0 !important;
  padding-left: 110px !important;
}
#contactFormContainer .iti .iti__selected-dial-code {
  margin-left: 10px;
}

@media (max-width: 991px) {
  #contactFormContainer #mobileInput {
    margin-left: 0 !important;
    padding-left: 98px !important;
    font-size: 14px !important;
  }
  #contactFormContainer .iti .iti__selected-dial-code {
    margin-left: 5px;
    font-size: 14px !important;
  }
}

.scheduleOption {
  cursor: pointer;
}
.scheduleOption:hover {
  color: #359bd8;
}

#contactModal .labelWrapper input,
#contactModal .labelWrapper textarea {
  margin: 0 !important;
}

#contactModal .formLabel {
  font-size: 14px;
  top: 14px;
}

.labelWrapper.forITI {
  overflow: visible !important;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 10;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 450px;
}

.labelWrapper.forITI .formLabel {
  left: 112px;
  top: 12px !important;
}
.labelWrapper.forITI .phone-status-icon {
  top: 50% !important;
}

@media (max-width: 991px) {
  .labelWrapper input,
  .labelWrapper textarea {
    line-height: 38px !important;
  }
  .formLabel {
    left: 12px;
    top: 11px;
  }
  .labelWrapper.forITI .formLabel {
    top: 5px !important;
    left: 100px;
  }
  #contactModal .formLabel {
    top: 5px !important;
  }
  .labelWrapper .phone-status-icon.invalid {
    top: 50%;
  }
}
.customTop {
  top: 10px !important;
}

@media (max-width: 991px) {
  .customTop {
    top: 14px !important;
  }
  /* .iti__search-input,.iti__search-icon{
    display: none !important ;
  }
 .iti__country-list {max-height: 500px;
  background: white;
 position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 80%;} */
  #jobApplyModal #mobileNum {
    padding-top: 5px !important;
  }
}

@media(min-width:991px){
  .top-10{
  top: 10px !important;
}
}