.popUpCalendly {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100vh !important;
  overflow: hidden !important;
  width: 100%;
}

.popup_cal_scheduler-container {
  width: 100%;
  overflow: hidden;
  height: 85vh;
  margin: 0 auto;
  margin-inline: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 8px 0 rgb(0 0 0 / 8%);
  display: flex;
  position: relative;
}

.close_calendly {
  position: absolute;
  top: 19px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #FFF0E8;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 80;
}

.close_calendly img {
  width: 17px;
  height: 17px;
}

.popup_cal_left-panel {
  border-right: 1px solid #e5e5e5;
  position: relative;
  box-shadow: 0px 0px 7px 0px #e5e5e5;
  z-index: 80;
}

.previous_btn_popup {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: #F26522;
}

.previous_btn_popup img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}

.popup_cal_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 60px;
  padding-inline: 90px;
  border-bottom: 1px solid #eee;
}

.meeting_detail {
  display: flex;
  flex-direction: column;
  padding-inline: 40px;
  padding-block: 20px;
}

.popup_cal_meeting-title {
  font-size: 24px;
  font-weight: bold;
  color: rgb(10, 37, 64);
  margin-bottom: 24px;
}

.popup_cal_company-name,
.popup_cal_duration {
  color: rgba(26, 26, 26, 0.61);
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.popup_cal_right-panel {
  display: flex;
  padding: 36px;
  padding-left: 0px;
  gap: 40px;
}

.right_time_container {
  padding-top: 24px;
}

.popupForm button[type="submit"] {
  font-family: "Manrope", sans-serif;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .right_container_modal {
    display: block;
    width: 100%;
  }
  .meeting_detail {
    padding-inline: 22px;
  }
  .popUpCalendly {
    width: 100% !important;
  }
  .right_container_modal {
    flex-grow: 1;
  }
}

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

.popup_cal_main-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(10, 37, 64);
  padding-left: 28px;
  line-height: 30px;
}

.popup_cal_selected-date {
  font-size: 16px;
  color: rgb(10, 37, 64);
  text-align: left;
  margin-bottom: 24px;
  padding-left: 4px;
}

.time_date_info .popup_cal_selected-date {
  margin-bottom: 0px;
  padding-left: 0;
  color: #F26522;
}

.popup_cal_month-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 16px;
  width: 100%;
}

.popup_cal_month-selector button {
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  padding: 5px;
  width: 37px;
  height: 37px;
  background: #F26522;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup_cal_month-selector button:hover {
  background: #d94f10;
}

.popup_cal_month-selector button img {
  width: 15px;
  height: 15px;
}

#popup_cal_next-month img {
  filter: brightness(0) invert(1);
}

#popup_cal_prev-month img {
  filter: brightness(0) invert(1);
}

.popup_cal_month-selector button.popup_cal_disabled {
  background: #FDDEC8;
  cursor: not-allowed;
}

.popup_cal_calendar {
  width: 100%;
}

.popup_cal_weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.popup_cal_days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  row-gap: 7px;
  font-weight: 500;
  place-items: center;
}

.popup_cal_day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  color: #F26522;
  height: 46px;
}

.popup_cal_disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.popup_cal_disabled img {
  filter: grayscale(100%) brightness(0%);
}

.popup_cal_day:hover:not(.popup_cal_disabled) {
  background: #FDDEC8;
  color: #F26522;
}

.popup_cal_day:not(.popup_cal_disabled) {
  color: #263238;
}

.popup_cal_day.popup_cal_selected {
  background: #F26522;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.popup_cal_today.popup_cal_selected::after {
  background-color: white;
}

.popup_cal_day.popup_cal_selected:hover {
  background: #F26522;
  color: #fff !important;
}

.popup_cal_time-slots-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 229px;
  height: 420px;
  overflow: hidden;
  overflow-y: scroll;
  padding-right: 24px;
  padding-inline: 1px;
  padding-bottom: 20px;
}

.popup_cal_time-slot {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-size: 14px;
  color: #1a1a1a;
}

.popup_cal_time-slot:hover {
  border-color: #F26522;
  background: #FFF8F5;
}

.popup_cal_time-slot.popup_cal_selected {
  background: #666;
  color: white;
}

.popup_cal_premium-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #666;
  color: white;
  padding: 4px 8px;
  border-radius: 0 8px 0 4px;
  font-size: 12px;
}

.popup_cal_timezone-selector {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}

.popup_cal_timezone-selector p {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 700;
  color: black;
}

.popup_cal_timezone-selector select {
  padding: 8px;
  padding-inline: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 25px;
  color: #1a1a1a;
  outline: none;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.time_option {
  display: flex;
  align-items: center;
  padding-inline: 10px;
  background-color: #e5e5e5ce;
  border-radius: 25px;
}

.time_option:hover,
.time_option:hover .popup_cal_timezone-selector select {
  background-color: #e5e5e5;
  border-radius: 25px;
}

.popup_cal_button-group {
  display: flex;
  margin-top: 10px;
}

.popup_cal_button-group.active {
  gap: 10px;
}

.time_date_info {
  color: #F26522;
  align-self: flex-start;
  font-weight: 600;
  margin-top: 1px;
  margin-right: 8px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.time_date_info img {
  width: 20px;
  height: 20px;
}

.popup_cal_time-slots-section::-webkit-scrollbar,
.time-select-wrapper::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.popup_cal_time-slots-section::-webkit-scrollbar-thumb,
.time-select-wrapper::-webkit-scrollbar-thumb {
  background-color: #737373;
  border-radius: 6px;
  border: 3px solid #ffffff;
}

.popup_cal_time-slot-selected {
  padding: 16px;
  padding-inline: 70px;
  background: transparent;
  color: #F26522;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  border: 1px solid rgba(242, 101, 34, 0.5);
  transition: all 0.2s ease-in-out;
  margin-right: 22px;
  cursor: pointer;
  font-weight: 500;
  padding: 17px 71px;
  text-wrap: nowrap;
  outline: 1px solid #F26522;
}

.popup_cal_time-slot-selected.active {
  padding-inline: 17px;
  background-color: #FDDEC8;
  color: #fff;
  border: 1px solid #FDDEC8;
  margin-right: 8px;
  outline: none;
  text-wrap: nowrap;
}

.popup_cal_next-button {
  background: #F26522;
  color: white;
  border: none;
  padding: 8px 29px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  margin-right: 8px;
}

.popup_cal_next-button:hover {
  background: #d94f10;
}

.cal_time {
  display: flex;
  justify-content: space-between;
}

.calender_month_name {
  display: flex;
  justify-content: space-between;
}

.timing_btns {
  display: flex;
  justify-content: space-between;
}

/* ==========form========= */
.popupForm {
  width: 0%;
  display: none;
  flex-direction: column;
  transform: translateX(800px);
  transition: all 0.5s ease-in-out;
}

.popupForm.active {
  transform: translateX(0);
  width: 100%;
  overflow-y: auto;
  padding: 30px;
  background-color: #ffffff;
}

.popupForm .heading h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.email_field,
.name_field,
.message_field,
.footer_text {
  margin-bottom: 15px;
  display: flex;
  gap: 24px;
}

.input_field_row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer_text {
  font-size: 14px;
}

.popupForm .email_field {
  gap: 24px;
}

.popupForm label {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.popupForm input,
.popupForm textarea,
.popupForm select {
  min-height: 46px;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  color: #848484;
  font-family: "Manrope", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.popupForm input:focus,
.popupForm textarea:active,
.popupForm textarea:focus,
.popupForm input:active,
.popupForm select:focus {
  outline: none;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #F26522, #FF9A62 20%, #F26522) border-box;
}

.popupForm input:active,
.popupForm textarea:active {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #F26522, #FF9A62 20%, #F26522) border-box;
}

.popupForm input[type="email"]::placeholder,
.popupForm select::placeholder,
.popupForm input[type="text"]::placeholder,
.popupForm textarea::placeholder {
  font-size: 15px;
  font-weight: 600;
}

.popupForm select {
  font-size: 15px;
  font-weight: 500;
  appearance: auto;
}

.form_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  margin-top: 24px;
}

.popupForm button {
  background-color: #F26522;
  border: 1px solid #F26522;
  width: 156px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 40px;
  color: #fff;
  line-height: 20px;
  cursor: pointer;
  margin-top: 0px;
}

.popupForm button:hover {
  background-color: #d94f10;
}

.add_guest {
  display: inline-block;
  border: 1px solid #F26522;
  width: fit-content;
  min-height: 32px;
  padding: 7px 12px;
  text-align: center;
  border-radius: 40px;
  color: #F26522;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

#add_guestInput {
  display: none;
}

.add_guest:hover {
  background-color: #F2652228;
}

#email-container {
  width: 98%;
  border-radius: 5px;
  padding: 4px 3px;
  margin-top: 0px;
  border: none;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 0px 0px 1px #b3c5e4;
  margin-left: 2px;
  min-height: fit-content;
  overflow: auto;
}

#email-container input {
  box-shadow: none;
  border: none;
  height: fit-content;
  font-size: 15.5px;
  padding-left: 5px;
  margin-top: 0;
}

#stickyDiv {
  padding-bottom: 5px;
}

#stickyDiv #email-container:focus-within {
  background-color: #fff;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  border: none;
  box-shadow: 0px 0px 0px 2px #b3c5e4;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #F26522, #FF9A62 20%, #F26522) border-box;
}

#stickyDiv #email-container input {
  padding: 3px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  outline: none;
  color: #848484;
}

.right_sticky_form input {
  height: 32px;
  width: 98%;
  border-radius: 5px;
  padding: 2px 10px;
  margin-top: 4px;
  border: none;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 0px 0px 1px #b3c5e4;
  margin-left: 2px;
}

.right_sticky_form input:focus {
  box-shadow: 0px 0px 0px 2px #b3c5e4;
  border: none;
  outline: none;
}

.right_sticky_form select {
  color: #848484;
  font-size: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Nunito;
  box-shadow: 0px 0px 0px 1px #b3c5e4;
  border: none;
  margin-left: 2px;
  width: 98%;
  padding-left: 6px;
}

.right_sticky_form select:focus {
  box-shadow: none;
  box-shadow: 0px 0px 0px 2px #b3c5e4;
  border: none;
}

.email-input-container {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #F26522;
  border-radius: 4px;
  padding: 5px;
}

.email-chip {
  display: flex;
  align-items: center;
  background-color: #FFF0E8;
  border: 1px solid #FDDEC8;
  border-radius: 3px;
  padding: 0px 5px;
  margin: 5px;
  height: 26px;
  font-size: 16px;
  width: fit-content;
  color: #d94f10;
}

.email-chip .close-btn {
  cursor: pointer;
  margin-left: 8px;
  font-weight: bold;
  color: #d32f2f;
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  min-width: 150px;
}

.email-input-container:focus-within {
  border-color: #d94f10;
}

.popUpCalendly #email-container {
  min-height: 46px;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  color: #0a2540;
  outline: none;
  display: flex;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: none;
}

.popUpCalendly #email-container:hover {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #F26522, #FF9A62 20%, #F26522) border-box;
}

.popup_cal_today {
  position: relative;
}

.popup_cal_today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: #F26522;
  border-radius: 50%;
}

/* Calendar Grid Styles */
.popup_cal_calendar {
  padding: 24px;
  padding-top: 0px;
}

.popup_cal_month-selector {
  margin-bottom: 32px;
}

#popup_cal_current-month {
  font-size: 16px;
  font-weight: 400;
  color: #1a202c;
}

.popup_cal_weekdays {
  margin-bottom: 16px;
}

.popup_cal_weekdays div {
  color: #0a2540;
  font-size: 12px;
  font-weight: 500;
}

.popup_cal_days {
  gap: 2px;
}

.popup_cal_day {
  height: 42px;
  background: transparent;
  border-radius: 100%;
  margin: 2px;
  font-weight: 700;
}

.popup_cal_day:not(.popup_cal_disabled):hover {
  background: #FDDEC8;
  color: #F26522;
}

.popup_cal_day.popup_cal_disabled {
  color: rgba(26, 26, 26, 0.61);
  background: transparent;
  cursor: not-allowed;
  font-weight: 500;
}

.popup_cal_day.popup_cal_sunday {
  color: rgba(26, 26, 26, 0.61);
  background: transparent;
  cursor: not-allowed;
}

.popupForm textarea {
  font-family: "Manrope", sans-serif;
  margin-top: -15px;
}

.mbl-cta {
  display: none;
}

.email-chip {
  display: inline-flex;
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 16px;
  padding: 4px 8px;
  margin: 4px;
  font-size: 14px;
  outline: none;
}

.email-chip .close-btn {
  margin-left: 7px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
}

.tooltip {
  position: absolute;
  top: 400px;
  background-color: #ffcccc;
  color: #ff0000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 80;
}

.all_rights {
  margin-block: 0.5rem;
}

.invalid-email {
  border: 1px solid red;
  color: red;
}

.no_slots_div,
.no_slots_div_sticky {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.no_slots_div .time_img img,
.no_slots_div_sticky .time_img img {
  width: 65px;
}

.time_text {
  color: #F26522;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.time_text h4 {
  font-size: 22px;
  margin: 5px 0;
}

.time_text p {
  font-size: 18px;
}

.register_form2_mobile {
  display: none;
}

#hero .register_form2_mobile .form_block .form-control { margin-bottom: 0px; }
#hero .register_form2_mobile .register_tag_msg { display: none; }
#hero .register_form2 .form_block .row { margin-bottom: 21px; }

.register_form2 .form_block input[type="email"]::placeholder,
.register_form2 .form_block select::placeholder,
.register_form2 .form_block input[type="text"]::placeholder,
.register_form2 .form_block textarea::placeholder { font-size: 16px; }

.register_form2 .form_block select { font-size: 14px; padding-block: 7px; }
#hero .register_form2 .form_block .btn-get-started { margin-top: 2px; }
.register_form2 .form_block > div { margin-bottom: 0px; }
#hero .register_form2 .form_block { margin-top: 18px; }
.register_form2 .form_block { width: 87%; }
#hero .register_form2 .form_block .btn-get-started { padding-inline: 16px; }

@media (min-width: 1024px) {
  .popup_cal_scheduler-container { height: 100%; }
}

@media (max-width: 1023px) {
  .popup_cal_scheduler-container { grid-template-columns: 1fr; height: 100%; }
  .popup_cal_right-panel { grid-template-columns: 1fr; padding-inline: 12px; }
  .popup_cal_left-panel { border-bottom: 1px solid #eee; }
  .popup_cal_logo { padding-inline: 30px; }
}

@media (max-width: 991px) {
  .popup_cal_left-panel { padding: 20px; padding-inline: 0px; }
  .register_form2 { display: none; }
  .register_form2_mobile { display: block; }
  #hero .form_block .row { margin-bottom: 0px; }
}

@media (max-width: 768px) {
  .popup_cal_scheduler-container { flex-direction: column; height: 100%; }
  .popup_cal_logo { display: none; }
  .meeting_detail { padding-top: 0; }
  .right_container_modal { overflow-y: scroll; overflow-x: hidden; }
  .form_content { gap: 8px; }
  .hide-in-mbl { display: none; }
  .popup_cal_next-button { margin-right: 2px; }
  .popup_cal_meeting-title { margin-bottom: 0px; }
  .meeting_detail { padding-bottom: 0; }
  .popup_cal_left-panel { border-right: none; box-shadow: none; }
  .popup_cal_scheduler-container { max-width: 100%; margin-inline: 7px; }
  .meeting_detail { padding-inline: 25px; text-align: center; }
  .time_date_info { width: 100%; justify-content: center; }
  .popup_cal_time-slots-section { width: 251px; }
  .previous_btn_popup { left: 0; border-radius: unset; }
  .popup_cal_time-slot-selected { padding-inline: 83px; }
  .close_calendly img { margin-left: 2px; }
  .popup_cal_time-slot-selected.active { margin-right: 4px; }
  .cal_time { flex-direction: column; }
  .right_time_container { display: flex; justify-content: center; align-items: center; flex-direction: column; }
  .form_content { width: 100%; }
  .popup_cal_main-header h2 { width: 100%; text-align: center; }
  .email_field, .name_field, .message_field, .footer_text { flex-direction: column; }
  .popup_cal_right-panel { flex-direction: column; width: 100%; }
  .popup_cal_timezone-selector { text-align: center; }
  .popup_cal_timezone-selector select { width: 48%; }
  .time_option { justify-content: center; }
  .popup_cal_calendar { padding-inline: 0px; }
  .no_slots_div { height: unset; }
}

@media (max-width: 600px) {
  body { padding: 0; }
  .popup_cal_scheduler-container { border-radius: 0; }
  .popup_cal_right-panel, .popup_cal_left-panel { padding: 20px; }
}

@media (max-width: 428px) {
  .popup_cal_scheduler-container { max-width: 100%; margin-inline: 12px; }
  .popup_cal_right-panel { padding: 13px; padding-left: 13px; }
  .popup_cal_calendar { padding: 0; }
  .popup_cal_day { height: 34px; }
  .meeting_detail { padding-inline: 10px; }
  .form_content { width: 100%; }
  .popup_cal_timezone-selector p { text-align: center; }
  .time_option { justify-content: center; }
  .popup_cal_timezone-selector select { width: 68%; }
  .popup_cal_company-name, .popup_cal_duration { width: 100%; text-align: center; }
  .popup_cal_logo { padding-top: 0; padding-bottom: 20px; }
  .right_time_container { padding-top: 28px; }
}

.calendar-header .nav-btn:disabled { cursor: not-allowed; color: #ccc; }
.nav-btn:disabled img { filter: grayscale(100%) brightness(1000%); }

.logo_container { display: flex; align-items: center; margin-top: 25px; }
.logo-head { width: 25%; }
.slider-container { overflow: hidden; width: 75%; max-width: 1000px; position: relative; padding: 0; }
.slider { display: flex; transition: transform 0.5s linear; align-items: center; gap: 20px; }
.slide-card { flex: 0 0 24%; max-width: 24%; background-color: transparent; text-align: center; display: flex; justify-content: center; }
.slide-card .fix-width { width: 75%; }
.slide-card img { object-fit: cover; width: 100%; height: auto; margin: 0; padding: 0; display: block; }

@media (max-width: 768px) {
  .logo_container { display: block; text-align: center; }
  .logo-head { width: 100%; }
  .slider-container { width: 100%; }
  .slide-card { flex: 0 0 100%; max-width: 100%; display: flex; justify-content: center; align-items: center; }
}

.hidden-fields { transform: translateX(100%); opacity: 0; transition: transform 0.5s ease, opacity 0s ease; display: none; margin-top: 15px; }
.form_field_new { transition: transform 0.5s ease, opacity 0.5s ease; }
.form_field_new.active { transform: translateX(0); opacity: 0; display: block; }
.register_form2 { min-height: 450px; position: relative; }

#back-btn { position: fixed; top: -65px; left: 0; color: #000; outline: none; border: none; cursor: pointer; border-radius: 50%; padding: 5px; font-weight: 800; height: 40px; width: 40px; }
.form_block select { appearance: auto; }
.register_form2 .form_block select { font-size: 15px; }
#initial-fields .row { margin-bottom: 40px !important; }
#hero .register_form2 { overflow: hidden; }

.right-panel { position: relative; overflow: hidden; }
.time-selector-container { position: absolute; right: -100%; top: 0; width: 100%; height: 100%; background: white; transition: all 0.3s ease; padding: 1rem; }
.time-selector-container.active { right: 0; padding-top: 0px; }
.time-selector { opacity: 1; height: auto; transform: none; transition: none; }
.time-selector.show { opacity: 1; height: auto; transform: none; }
.calendar.slide-out { transform: translateX(-100%); transition: transform 0.3s ease; }

.right_sticky_form { position: absolute; right: -100%; top: 0; width: 100%; height: 100%; background: white; transition: all 0.3s ease; transform: none; }
.right_sticky_form.active { right: 0; transform: none; }
.right_block { position: relative; overflow: hidden; }
.right_sticky_form input { margin-bottom: 9px !important; }
.right_sticky_form select { margin-bottom: 8px !important; }
.right_block .right-panel { height: 410px; }
.right_sticky_form input::placeholder { color: #848484 !important; }
.header_innner { padding-right: 0px; }
.time-select-wrapper { overflow-y: auto; overflow-x: hidden; height: 270px; }

.right_block .popup_cal_time-slot-selected { padding: 10px 64px; text-wrap: nowrap; }
.right_block .popup_cal_time-slot-selected.active { padding-inline: 13px; background-color: #FDDEC8; color: #fff; border: 1px solid #FDDEC8; margin-right: 8px; outline: none; }
.right_block .popup_cal_button-group { margin-inline: 4px; }
.right_block .selected-date { margin-top: 8px; }
.flex_between_col { display: flex; justify-content: space-between; flex-direction: column; }
.popupImg { width: 100%; height: 200px; }

.right_container_modal { flex-grow: 1 !important; }
.popupForm.active { height: 100%; display: flex; }
.popup_cal_calendar-section { width: 100%; }