/* 0) Overlay & Modal Window */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-window {
  background: #fff;
  border-radius: 8px;
  /* width:380px; */
  /* max-width:95%; */
  /* max-height:95vh; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: fadeIn 200ms ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0px 8px 32px 0px #12111726,
    0px 16px 48px 0px #12111726;

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 1) Step 1 */
.lat-book-trial-step1 .lat-step-header {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.lat-book-trial-step1 .lat-step-title {
  flex: 1;
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

.lat-book-trial-step1 .step-close {
  font-size: 27px;
  cursor: pointer;
  user-select: none;
  position: absolute;
  top: 6px;
  right: 16px;
}

.lat-book-trial-step1 .lat-duration-option {
  display: flex;
  align-items: center;
  border-radius: 9px;
  padding: 16px;
  margin-block: 16px;
  cursor: pointer;
  transition: background .15s;
  border: 2px solid #0000001F;
  height: 104px;
}

.lat-book-trial-step1 .lat-duration-option:hover {
  border: 2px solid var(--dark-text);
}

.lat-book-trial-step1 .opt-icon {
  font-size: 24px;
  margin-right: 14px;
}

.lat-book-trial-step1 .opt-icon img {
  height: 24px;
  min-width: 24px;
}

.lat-book-trial-step1 .opt-text h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
}

.lat-book-trial-step1 .opt-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
  color: var(--dark-text);
}

.lat-book-trial-step1 .opt-arrow {
  margin-left: auto;
  font-size: 20px;
}

/* 2) Step 2 */
.lat-book-trial-step2 .lat-step-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.lat-book-trial-step2 .step-back,
.lat-book-trial-step2 .step-close {
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}

.lat-book-trial-step2 .step-back {
  margin-right: 12px;
}

.lat-book-trial-step2 .lat-step-title {
  flex: 1;
  margin: 0;
  font-size: 16px;
  text-align: center;
}

.lat-book-trial-step2 .lat-step-body {
  max-height: 75vh;
  overflow-y: scroll;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lat-book-trial-step2 .lat-step-body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.lat-book-trial-step2 .duration-tabs {
  display: flex;
  margin: 12px 16px 0;
}

.lat-book-trial-step2 .duration-tab {
  flex: 1;
  padding: 10px 0;
  font-size: 16px;
  border: 1px solid #ddd;
  background: #f0f0f0;
  cursor: pointer;
}

.lat-book-trial-step2 .duration-tab:first-child {
  border-radius: 6px 0 0 6px;
}

.lat-book-trial-step2 .duration-tab:last-child {
  border-radius: 0 6px 6px 0;
}

.lat-book-trial-step2 .duration-tab.active {
  background: #fff;
  border-bottom-color: #fff;
}

.lat-book-trial-step2 .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin: 8px 0;
}

.lat-book-trial-step2 .nav-arrow {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.lat-book-trial-step2 .week-label {
  font-weight: 600;
  font-size: 14px;
}

.lat-book-trial-step2 .lat-calendar-days {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 8px;
}

.lat-book-trial-step2 .day {
  text-align: center;
  cursor: pointer;
}

.lat-book-trial-step2 .day-name {
  display: block;
  font-size: 12px;
  color: #888;
}

.lat-book-trial-step2 .day-num {
  display: block;
  margin-top: 4px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
}

.lat-book-trial-step2 .day.selected .day-num {
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
}

.lat-book-trial-step2 .day.today .day-num {
  font-weight: 600;
}

.lat-book-trial-step2 .time-section {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin: 16px 16px 8px;
}

.lat-book-trial-step2 .time-icon {
  font-size: 18px;
  margin-right: 8px;
}

.lat-book-trial-step2 .time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 8px;
}

.lat-book-trial-step2 .time-slot {
  flex: 1 1 45%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.lat-book-trial-step2 .time-slot.selected {
  border-color: #ff3b30;
  color: #ff3b30;
}

.lat-book-trial-step2 .btn-continue {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 12px;
  background: #ff3b30;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* 3) Step 3 */
.lat-book-trial-step3 .lat-step-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.lat-book-trial-step3 .step-back,
.lat-book-trial-step3 .step-close {
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}

.lat-book-trial-step3 .step-back {
  margin-right: 12px;
}

.lat-book-trial-step3 .step3-title {
  flex: 1;
  margin: 0;
  font-size: 18px;
  text-align: center;
}

.lat-book-trial-step3 .lat-step-body {
  max-height: 85vh;
  overflow-y: scroll;
  padding-bottom: 16px;
}

.lat-book-trial-step3 .lat-step-body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.lat-book-trial-step3 .order-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
}

.lat-book-trial-step3 .teacher-card {
  flex: 1 1 250px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px;
}

.lat-book-trial-step3 .teacher-subject {
  font-size: 12px;
  color: #888;
}

.lat-book-trial-step3 .teacher-profile {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.lat-book-trial-step3 .teacher-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.lat-book-trial-step3 .teacher-info {
  flex: 1;
}

.lat-book-trial-step3 .teacher-name {
  margin: 0;
  font-size: 18px;
}

.lat-book-trial-step3 .teacher-rating {
  font-size: 14px;
  color: #555;
}

.lat-book-trial-step3 .teacher-tags .tag {
  display: inline-block;
  font-size: 12px;
  padding: 2px 6px;
  margin-right: 4px;
  border-radius: 4px;
  background: #eef;
}

.lat-book-trial-step3 .lessons-info {
  list-style: disc inside;
  margin: 12px 0;
  padding: 0;
}

.lat-book-trial-step3 .your-order h3 {
  margin: 12px 0;
  font-size: 16px;
}

.lat-book-trial-step3 .order-line {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
}

.lat-book-trial-step3 .order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin: 8px 0;
}

.lat-book-trial-step3 .promo-link {
  display: block;
  margin-top: 8px;
  text-decoration: underline;
  font-size: 14px;
}

.lat-book-trial-step3 .payment-section {
  flex: 1 1 250px;
}

.lat-book-trial-step3 .payment-select {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.lat-book-trial-step3 .btn-confirm {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background: #ff3b30;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.lat-book-trial-step3 .review-carousel {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.lat-book-trial-step3 .rev-arrow {
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
}

.lat-book-trial-step3 .review-card {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 16px;
}

.lat-book-trial-step3 .review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}

.lat-book-trial-step3 .review-content .review-author {
  font-weight: 600;
  margin-bottom: 4px;
}

.lat-book-trial-step3 .promo-cta {
  background: #e6fffa;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

.lat-book-trial-step3 .promo-disclaimer {
  background: #f7f7f7;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
}


/* Overlay & Container */
.lat-trial-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lat-trial-container {
  position: relative;
  width: 478px;
  max-width: 90%;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Poppins", sans-serif !important;
}

.lat-trial-container:has(.lat-book-trial-step1.active) {
  width: 456px;
  height: 505px;
}

.lat-trial-container:has(.lat-transfer-complete-screen.active),
.lat-trial-container:has(.lat-review-transfer-screen.active) {
  width: 520px !important;
}

.lat-trial-container:has(.lat-transfer-screen.active) {
  width: 520px !important;
  height: 697px !important;
  overflow: auto;
  max-height: 87%;
  scrollbar-width: none;

}

.lat-trial-container:has(.lat-trial-modal-step3.active) {
  width: 520px !important;
  height: 384px !important;
}

.lat-trial-container:has(.lat-calendar-slots.active) {
  width: 505px !important;
}

.lat-trial-container.fullscreen::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.lat-trial-container.fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none;
  max-height: none;
  border-radius: 0 !important;
  overflow-y: auto;
  padding-block: 67px 105px;
}

.lat-trial-modal-close {
  position: absolute;
  top: 6px;
  right: 13px;
  font-size: 30px;
  cursor: pointer;
  font-weight: 400;

}

/* Step visibility */
.lat-trial-modal-screen {
  display: none;
}

.lat-trial-modal-screen.lat-trial-modal-step1.active,
.lat-trial-modal-screen.lat-trial-modal-step2.active {
  margin-top: 48px;
}

.lat-trial-modal-screen.active {
  display: block;
}

.lat-main-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #121117;
}

.choose-payment-meth {
  padding: 6px 16px;
}


.lat-continue-to-payment-method:hover {
  background: rgba(255, 88, 60, 1) !important;
}

.lat-continue-to-payment-method {
  width: 100%;
  justify-content: center;
  border: 2px solid #121117;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #FF2500;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-top: 8px;
  font-weight: 600;
  height: 49px;
}

/* Step 2 */
.lat-trial-modal-step2 {
  margin-bottom: 0;
}

/* Step 3 */
.lat-trial-box-header {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}

.lat-teacher-avatar {
  width: 48px;
  height: 48px;
  border: 1px solid #1211170F;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 12px;
}

.lat-trial-title {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #121117;
}

.lat-trial-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 2px 0 0;
}

.lat-slots-tabs {
  overflow: hidden;
  margin-bottom: 11px;
  height: 41px;
  display: flex;
  align-items: center;
  box-shadow: none;
  outline: none;
  background: #f5f5f5;
  border-radius: 8px;
}

.lat-slot-tab {
  flex: 1;
  padding: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.lat-slot-tab.active {
  background: #fff;
  border: 2px solid #DCDCE5;
  border-radius: 8px;
}

.lat-slots-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 24px;
}

.arrow-box-calendar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 24px;
  height: 40px;
  margin-bottom: 12px;
}

.arrow-box-calendar {
  min-height: 40px;
}

.arrow-calendar:hover {
  background: #f5f5f5;
}

.arrow-calendar {
  border: 2px solid #DCDCE5;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cal-heading {
  font-weight: 600;
  font-size: 16px;
}

.lat-week-days {
  display: flex;
  justify-content: space-between;
}

.lat-date-label {
  width: 65px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.day {
  font-size: 14px;
  text-transform: capitalize;
  color: #6A697C;
  font-weight: 500;
  text-transform: capitalize;
}

.day-info {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #121117;
  cursor: pointer;
}

.lat-date-label.selected .day {
  color: #FF2500;
}

.lat-date-label.selected .day-info {
  background: #FF25001A;
  border: 2px solid #FF6348;
  color: #FF2500;
}

.calendar-box {
  padding-block: 21px 15px;
  border-block: 1px solid #B2B2B2;
  margin-left: -24px;
  width: calc(100% + 48px);
  margin-bottom: 14px;
}

.g-heading {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.7;
  text-align: left;
  margin-bottom: 22px;
}

.lat-slot-section {
  margin-bottom: 24px;
  text-align: left;
}

.lat-slot-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.lat-my-time {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lat-my-time-label:hover:not(.active) {
  background: #f5f5f5;
}

.lat-my-time-label.active {
  border: 2px solid var(--text) !important;
  background: #f4f4f8 !important;
}

.lat-my-time-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 2px solid #0000001F;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  flex: 1;
  background: transparent;
}

.mtt-12 {
  margin-top: 12px !important;
}

.timer-section {
  max-height: 287px;
  overflow: auto;
  scrollbar-width: none;
}

/* Step 4 */
.choose-payment-meth:hover {
  background: #f5f5f5;
}

.choose-payment-meth {
  border: 2px solid #DCDCE5;
  border-radius: 8px;
  height: 104px;
  padding: 6px 18px;
  text-align: left;
  cursor: pointer;
}

.balance-heading {
  font-weight: 600;
  font-size: 16px;
  color: #121117;
}

.balance-sub-heading {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
  font-family: 'Figtree', sans-serif;
}

/* Step 5 Checkout */
.lat-checkout-container {
  display: flex;
  gap: 64px;
  padding-inline: 208px;
  max-width: 1392px;
  margin: 0 auto;
}

.lat-checkout-left {
  padding: 24px;
  border: 1px solid #DCDCE5;
  max-width: 400px;
  width: 100%;
}

.lat-checkout-right-section {
  max-width: 512px;
  width: 100%;
}

.lat-checkout-left,
.lat-checkout-right-section {
  background: #fff;
  border-radius: 8px;
}

.super-heading {
  font-size: 26px;
  font-weight: 600;
  text-align: left;
}

.lat-payment-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid #dcdce5;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
}

.card-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon {
  width: 48px;
  height: 24px;
}

.card-details {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.card-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lat-outline-button {
  background: #fff !important;
  color: #121117 !important;
}

.lat-outline-button,
.lat-confirm-button {
  width: 100%;
  padding: 12px;
  background: #FF2500;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #121117;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}

.lat-confirm-button:hover {
  background: rgba(255, 88, 60, 1) !important;
}

.checkout-review-box {
  border-top: 5px solid #F4F4F8;
  margin-bottom: 100px;
}

.checkout-review-window {
  border-radius: 8px;
  border: 1px solid #DCDCE5;
  padding: 17px;
}

.arrowz {
  cursor: pointer;
  width: 58px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointer {
  cursor: pointer;
}

.arrowz:hover {
  background: #f5f5f5;
}

.payment-option:hover {
  background: #F4F4F8;
  cursor: pointer;
}

.payment-option {
  display: flex;
  gap: 10px;
  padding-block: 10px;
  padding-inline: 24px;
  border-radius: 8px;
}

.payment-optionz:hover {
  background: white !important;
}

.payment-optionz {
  top: 52px;
  left: 0px;
  border-radius: 8px;
  border: 1px solid #DCDCE5;
  background: white;
  padding: 0 !important;
  z-index: 3;
}

.lat-trial-modal-overlay p {
  margin-bottom: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.lat-available-stars {
  width: 18px;
  height: 18px;
}

/* transfer screen */

.lat-tutor-avatar {
  height: 48px;
  width: 48px;
  border: 1px solid #1211170F;
  border-radius: 8px;
}

.lat-review-transfer-container .lat-row:hover {
  cursor: pointer;
  background: #f4f4f8;
}

.lat-review-transfer-container .lat-row {
  border-bottom: 1px solid var(--border);
}

.lat-transfer-screen h4 {
  font-weight: 500;
  font-size: 16px;
  color: #121117;
  margin: 0;
}

.lat-transfer-screen p {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  opacity: 70%;

}

.lat-transfer-screen .arrow-back {
  position: absolute;
  left: -15px;
  top: -51px;
  cursor: pointer;
}

.lat-transfer-screen h2 {
  font-size: 28px;
  font-weight: 600;
  color: #121117;
  margin-top: 32px;
  margin-bottom: 24px;
}

/* review transfer screen */
.lat-profile-transfer {
  width: 104px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 8px;
  margin-top: 32px;
}

.lat-profile-transfer .imageContainer {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(18, 17, 23, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lat-profile-transfer .imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lat-profile-transfer .rightArrow {
  position: absolute;
  left: 35%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(220, 220, 229, 1);
  background: rgba(244, 244, 248, 1);
  padding: 5px;
}

.lat-review-transfer-screen .arrow-back {
  position: absolute;
  left: -16px;
  top: -54px;
  cursor: pointer;
}

.lat-review-transfer-screen li,
.lat-review-transfer-screen span {
  font-size: 16px;
  color: #121117;
  ;
}

.lat-review-transfer-screen h2 {
  font-size: 28px;
  font-weight: 600;
  color: #121117;
  margin-bottom: 20px;
}

.lat-review-transfer-screen .lat-container {
  border-bottom: 1px solid var(--border);
  padding-bottom: 19px;
  margin-block: 20px;
}

.lat-review-transfer-screen .lat-info-container {
  margin-top: 40px;
}

.lat-review-transfer-screen .lat-info-container ul li span {
  font-weight: 500;
}

.lat-review-transfer-screen .lat-info-container ul li {
  margin-bottom: 16px;
}

.lat-review-transfer-screen .lat-info-container h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

/* transfer complete screen */
.lat-transfer-complete-screen .lat-complete-container {
  background: rgba(255, 233, 229, 0.5);
  padding-top: 164px;
  padding-bottom: 40px;
  border-radius: 12px;
}

.lat-transfer-complete-screen .transferContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 70px;
  padding: 0px 24px;
  height: auto;
  border-radius: 20px;
  margin: 0;
  width: 100%;
}

.lat-transfer-complete-screen .transferContainer .transferImage {
  width: 216px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.lat-transfer-complete-screen .transferContainer .transferImage .numbersCountOnImage {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 2px solid rgba(18, 17, 23, 1);
  padding: 4px;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -10px;
  right: -20px;
  font-size: 13.91px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
}

.lat-transfer-complete-screen .transferContainer .transferImage img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  flex-shrink: 1;
  border: 1px solid rgba(18, 17, 23, 0.06);
}

.lat-transfer-complete-screen .transferComplete .transferContainer h1 {
  font-size: 38px;
  font-weight: 600;
  color: #121117;
  padding: 0;
}

.lat-trial-container:has(.lat-transfer-complete-screen.active) .lat-trial-modal-close {
  z-index: 1;
}

.lat-trial-container:has(.lat-transfer-complete-screen.active) {
  padding: 0;
}

.lat-transfer-complete-screen h1 {
  font-size: 38px;
  font-weight: 600;
  color: #121117;
}

.lat-transfer-complete-screen p span {
  font-weight: 600;
}

.lat-transfer-complete-screen .btn-wrapper {
  padding-inline: 24px;
  padding-bottom: 32px;
}

.lat-transfer-complete-screen p {
  font-size: 16px;
  color: #121117;
  margin-top: 20px;
}

.lat-timezone-box {
  margin-left: 12px;
}

@media (max-width: 1200px) {
  .lat-checkout-container {
    padding-inline: 100px;
  }
}

@media (max-width: 992px) {
  .lat-checkout-container {
    padding-inline: 14px;
  }
}

@media (max-width: 768px) {

  .lat-trial-container:has(.lat-trial-modal-step3.active),
  .lat-trial-container:has(.lat-book-trial-step1.active) {
    width: 100vw !important;
    height: auto !important;
    position: absolute;
    bottom: 0;
  }

  .lat-trial-container {
    padding: 16px !important;
    max-height: none !important;
    max-width: none;
    border-radius: 0;
  }

  #page:has(.lat-trial-modal-overlay.active) {
    overflow: hidden;
    height: 100vh;
  }

  .lat-book-trial-step1 .lat-duration-option {
    height: auto;
  }

  .lat-trial-title {
    font-size: 16px;
    font-weight: 700;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-trial-subtitle {
    font-size: 12px;
  }

  .lat-book-title-box {
    text-align: center !important;
    flex: 1;
  }

  .lat-slot-tab {
    padding: 4px;
  }

  .lat-slots-tabs {
    height: 33px;
    margin-bottom: 20px;
  }

  .lat-date-label.selected .day-info {
    color: #fff;
    border-radius: 50%;
    background: #FF2500;
  }

  .lat-week-days {
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
  }

  .calendar-box {
    border-bottom: none;
    margin-bottom: 0;
  }

  .timer-section {
    max-height: calc(100vh - 367px);
  }

  .timer-section .g-heading {
    margin-bottom: 24px !important;
  }

  .day-info {
    font-size: 14px;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-back-box {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
  }


  .lat-teacher-avatar,
  .lat-book-trial-step1 .opt-text p {
    display: none;
  }

  .lat-trial-modal-step3>h2,
  .lat-book-trial-step1 .lat-step-title {
    font-size: 24px;
    font-weight: 700;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-review-transfer-screen .img,
  .lat-transfer-screen .img,
  .choose-payment-meth .balance-sub-heading {
    display: none;
  }

  .lat-review-transfer-screen .lat-info-container,
  .lat-profile-transfer {
    margin-top: 24px;
  }

  .lat-review-transfer-screen .lat-info-container h3 {
    font-size: 16px !important;
  }

  .lat-review-transfer-screen-body {
    height: calc(100vh - 166px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
  }

  .lat-review-transfer-screen li,
  .lat-review-transfer-screen span {
    font-size: 14px !important;
  }

  .lat-review-transfer-screen h2 {
    font-size: 24px !important;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .lat-transfer-screen h2 {
    font-size: 24px !important;
    margin-block: 20px !important;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-transfer-screen h4 {
    font-size: 14px;
  }

  .choose-payment-meth .balance-heading {
    display: inline-block;
    margin-top: 2px;
    margin-left: 10px;
  }

  .lat-trial-container:has(.lat-calendar-slots.active) {
    width: 100vw !important;
  }

  .lat-trial-container:has(.lat-transfer-complete-screen.active),
  .lat-trial-container:has(.lat-review-transfer-screen.active),
  .lat-trial-container:has(.lat-transfer-screen.active) {
    width: 100vw !important;
    height: 100vh !important;
    max-height: none !important;
  }

  .lat-transfer-complete-screen .lat-cancel-btn,
  .lat-transfer-complete-screen .lat-schedule-btn {
    display: flex !important;
    justify-content: center;
  }

  .lat-transfer-complete-screen {
    height: 100vh;
  }

  .lat-transfer-complete-screen .btn-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .lat-transfer-complete-screen .lat-complete-container {
    margin-left: -16px;
    width: calc(100vw);
    margin-top: -16px;
    border-radius: 0;
  }

  .lat-transfer-complete-screen .btn-wrapper {
    padding-bottom: 16px;
    padding-inline: 0 !important;
  }

  .lat-transfer-complete-screen h1 {
    font-size: 30px;
  }

  .lat-transfer-complete-screen .lat-done-btn {
    display: none;
  }

  .lat-transfer-complete-screen p {
    padding-inline: 16px !important;
    font-size: 14px !important;
  }

  .lat-outline-button,
  .lat-confirm-button {
    font-size: 16px !important;
  }

  .choose-payment-meth {
    height: auto !important;
  }

  /* payment screen */
  .lat-checkout-container {
    flex-direction: column;
    padding-inline: 0;
    gap: 20px;
  }

  .lat-responsive-title {
    font-size: 20px;
    font-weight: 700;
    color: #121117;
    margin-bottom: 16px !important;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-back-to-step3 {
    margin-bottom: 20px;
  }

  .lat-checkout-right-section,
  .lat-checkout-left {
    max-width: none;
    border: none;
    padding: 0;
  }

  .profile-details-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .teacher-text {
    font-weight: 700 !important;
    font-size: 24px !important;
     font-family: "Poppins", sans-serif !important;
  }

  .profile-details-container>img {
    width: 80px;
    height: 80px;
    border: 1px solid #1211170F;
  }

  .container-details-profile .lat-language-speak {
    font-weight: 400;
    font-size: 16px;
    color: #121117;
    display: block !important;
    text-align: left;
     font-family: "Poppins", sans-serif !important;
    
  }

  .bottom-section svg {
    height: 18px;
    width: 18px;
  }

  .lat-trial-lesson-title,
  .lat-order-text,
  .duty-info,
  .lat-smt-box {
    display: none !important;
  }

  .lat-timezone-box {
    margin-left: 0 !important;
  }

  .bottom-section>span,
  .lat-timezone-box :first-child {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #121117 !important;
    font-family: "Poppins", sans-serif !important;
  }

  .lat-timezone-box > :nth-child(2) {
    font-size: 14px !important; 
    font-weight: 400 !important;
    color: #4D4C5C !important;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-collective-box {
    padding-block: 0 !important;
  }
  
  .lat-cancel-info {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 70%;
    text-align: left;
     font-family: "Poppins", sans-serif !important;
  }

  .checkout-review-box {
    border-top: 0 !important;
  }

  .review-content-item {
    border: 1px solid #DCDCE5;
    border-radius: 8px;
    padding: 16px;
    display: block !important;
    min-width: 301px;
    width: 100%;
  }

  .checkout-review-window {
    all: unset;
    display: flex;
    gap: 16px;
    width: calc(100vw - 32px);
    overflow: auto;
    scrollbar-width: none;
  }

  .checkout-review-window .lat-reviewer-img {
    height: 40px;
    width: 40px;
  }

  .lat-reviewer-name {
    font-size: 16px !important;
     font-family: "Poppins", sans-serif !important;
  }

  .lat-reveal-review,
  .lat-review-content,
  .lat-review-date {
    font-size: 14px;
    font-weight: 400;
    color: #121117;
    font-family: "Poppins", sans-serif !important;
  }

  .lat-ssl-info p {
    font-size: 12px;
    font-weight: 400;
    color: #121117;
    opacity: 70%;
  }

  .lat-ssl-info {
    width: 100vw;
    margin-left: -16px;
    background: #EDEDF2;
    padding: 30px 17px;
    border-block: 1px solid var(--border);
  }

  .lat-confirm-btn-wrapper {
        position: fixed;
        width: 100%;
        bottom: -1px;
        padding-top: 24px;
        border-block: 1px solid var(--border);
        margin-left: -16px;
        padding-inline: 16px;
        background: #fff;
        z-index: 1;
  }

}