@charset "UTF-8";
.c-head--checkout {
  background: var(--clr-black);
  color: var(--clr-white);
  padding: 20px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.c-head--checkout.c-head__sticky {
  position: sticky;
}
.c-head--checkout .site-branding {
  display: inline-flex;
  align-items: center;
}
.c-head--checkout .site-branding img,
.c-head--checkout .site-branding svg {
  max-height: 62px;
  width: auto;
}

.c-head__checkout-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-head__secure {
  font-family: var(--body-fonts);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-head__secure img, .c-head__secure svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.c-checkout__loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--body-fonts);
  color: var(--clr-black);
  flex-direction: column;
}
.checkout-page.page-loader .c-checkout__loader {
  display: flex;
}
.c-checkout__loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-checkout__loader-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 60px;
}
.c-checkout__loader-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1638FB;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.c-checkout__loader-dots span:nth-child(1) {
  animation-delay: 0s;
}
.c-checkout__loader-dots span:nth-child(2) {
  animation-delay: 0.1s;
}
.c-checkout__loader-dots span:nth-child(3) {
  animation-delay: 0.2s;
}
.c-checkout__loader-dots span:nth-child(4) {
  animation-delay: 0.3s;
}
.c-checkout__loader-dots span:nth-child(5) {
  animation-delay: 0.4s;
}
.c-checkout__loader-dots span:nth-child(6) {
  animation-delay: 0.5s;
}
.c-checkout__loader-dots span:nth-child(7) {
  animation-delay: 0.6s;
}
.c-checkout__loader-dots span:nth-child(8) {
  animation-delay: 0.7s;
}
.c-checkout__loader-dots span:nth-child(9) {
  animation-delay: 0.8s;
}
.c-checkout__loader-title {
  font-size: 20px;
  font-weight: 600;
  color: #1638FB;
  margin: 0;
}
.c-checkout__loader-sub {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.c-checkout__error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  font-family: var(--body-fonts);
}

.c-checkout {
  background: #F2F2F2;
  padding: var(--pt, 0px) var(--px, 20px) var(--pb, 0px);
  border-bottom: 1px solid #F2F2F2;
  position: relative;
  overflow: hidden;
}
.c-checkout:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
}
.c-checkout .wrapper {
  max-width: clamp(1024px, 90.2083333333vw, 1200px);
  width: 100%;
}
.c-checkout__form {
  margin: 0;
}
.c-checkout__columns {
  display: flex;
  gap: 0;
}
.c-checkout__left {
  width: 45%;
  padding: 56px 104px 64px 0px;
  background: #F2F2F2;
}
.c-checkout__left input.hidden_sub_total {
  display: none;
}
.c-checkout__left--column {
  width: 100%;
}
.c-checkout__right {
  width: 55%;
  padding: 56px 0 64px 104px;
  background: var(--clr-white);
  position: relative;
  z-index: 1;
}
.c-checkout__right .c-checkout__title {
  margin: 0 0 32px;
  color: #000000;
}
.c-checkout__title {
  font-family: var(--head-fonts);
  font-size: clamp(16px, 2vw, 24px);
  line-height: clamp(16px, 2vw, 26px);
  font-weight: 500;
  color: var(--clr-sectxt);
  margin: 0 0 28px;
}
.c-checkout__intervals {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  border: 1px solid #ECECEC;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.031372549);
}
.c-checkout__interval {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  text-align: left;
  position: relative;
  background: #FFFFFF;
  min-width: 96px;
}
.c-checkout__interval input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.c-checkout__interval input[type=radio]:checked {
  border-color: var(--clr-blue, #2563eb);
  background: var(--clr-blue, #2563eb);
  box-shadow: inset 0 0 0 3px var(--clr-white, #fff);
}
.c-checkout__interval.active, .c-checkout__interval:has(input:checked) {
  border-color: var(--clr-blue);
}
.c-checkout__interval.active .c-checkout__interval-text, .c-checkout__interval:has(input:checked) .c-checkout__interval-text {
  font-weight: 600;
}
.c-checkout__interval-text {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--clr-black);
  display: block;
}
.c-checkout__interval-discount {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  color: var(--clr-orange);
  display: block;
  margin: 6px 0 0;
}
.c-checkout__plan-card {
  background: var(--clr-charcoal);
  color: var(--clr-white);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 22px 32px 24px;
  position: relative;
}
.c-checkout__plan-card--trial {
  padding: 18px 22px;
}
.c-checkout__plan-category {
  font-family: var(--head-fonts);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #E5E5E5;
  margin-bottom: 12px;
  display: block;
}
.c-checkout__selected-plan {
  display: flex;
  flex-direction: column;
  border: 1px solid #555555;
  border-radius: 4px;
  position: relative;
}
.c-checkout__plan-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #2F2F2F;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 14px 16px;
  position: relative;
}
.c-checkout__plan-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.c-checkout__plan-name {
  font-family: var(--head-fonts);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.c-checkout__plan-price {
  font-family: var(--body-fonts);
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #FFFFFF;
}
.c-checkout__plan-price .pricing_symbol {
  font-weight: 500;
}
.c-checkout__plan-price sub {
  font-size: 22px;
  line-height: 36px;
  font-weight: 300;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.c-checkout__plan-change-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--clr-white);
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  padding: 6px 0;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}
.c-checkout__plan-change-btn:hover {
  opacity: 0.75;
}
.c-checkout__plan-change-btn svg {
  transition: transform 0.2s ease;
}
.c-checkout__plan-change-btn.is-open svg {
  transform: rotate(180deg);
}
.c-checkout__plan-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  z-index: 9;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: var(--Black-20, #CCCCCC);
  box-shadow: 0px 10px 20px 0px rgba(220, 220, 220, 0.4);
}
.c-checkout__plan-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
  gap: 12px;
}
.c-checkout__plan-option:last-child {
  border-bottom: none;
}
.c-checkout__plan-option:hover {
  background: #F2F2F2;
}
.c-checkout__plan-option.selected:before {
  content: "";
  position: absolute;
  left: auto;
  top: auto;
  background: url("../images/check-mark.svg") no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}
.c-checkout__plan-option.selected .c-checkout__plan-option-name {
  font-weight: 600;
  color: var(--clr-blue);
}
.c-checkout__plan-option.selected .c-checkout__plan-option-price {
  font-weight: 600;
  color: var(--clr-blue);
}
.c-checkout__plan-option-name {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--clr-black_60);
  padding-left: 22px;
}
.c-checkout__plan-option-price {
  font-family: var(--body-fonts);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--clr-black_60);
}
.c-checkout__plan-hours-bar {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 24px;
  color: #E5E5E5;
  background: #1C1C1C;
  padding: 8px 16px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.c-checkout__no-plans {
  font-size: 14px;
  color: var(--clr-black_60);
  font-family: var(--body-fonts);
  padding: 20px 0;
}
.c-checkout__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 24px 33px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.c-checkout__coupon {
  margin-bottom: 22px;
}
.c-checkout__coupon-input {
  display: flex;
}
.c-checkout__coupon-input .coupon_code {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #CCCCCC;
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #999999;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.c-checkout__coupon-input .coupon_code:focus {
  border-color: var(--clr-black);
}
.c-checkout__coupon-input .coupon_code::placeholder {
  color: #999;
}
.c-checkout__coupon-input .coupon_btn {
  padding: 12px 20px;
  background: var(--clr-black);
  color: var(--clr-white);
  border: 1px solid var(--clr-black);
  border-radius: 0 4px 4px 0;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--body-fonts);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.c-checkout__coupon-input .coupon_btn:hover {
  opacity: 0.85;
}
.c-checkout__coupon-input .coupon_btn--remove {
  background: #dc2626;
  border-color: #dc2626;
}
.c-checkout__summary {
  padding-top: 0;
  margin-bottom: 20px;
}
.c-checkout__summary-row {
  font-family: var(--body-fonts);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 6px;
  color: #999999;
}
.c-checkout__summary-row strong {
  color: var(--clr-sectxt);
  font-weight: 600;
}
.c-checkout__summary-row .old-amount {
  color: #999;
  margin-right: 6px;
}
.c-checkout__summary-row:last-child {
  margin: 0;
}
.c-checkout__seats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}
.c-checkout__seats-count {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--body-fonts);
  color: var(--clr-black);
  line-height: 32px;
}
.c-checkout__seat-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  color: var(--clr-black);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: background 0.15s ease;
  font-family: var(--body-fonts);
}
.c-checkout__seat-btn:hover {
  background: #e5e5e5;
}
.c-checkout__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #e5e5e5;
  font-family: var(--body-fonts);
}
.c-checkout__total > span {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--clr-black);
}
.c-checkout__total > strong {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: var(--clr-black);
}
.c-checkout__total > strong sup {
  font-size: 14px;
}
.c-checkout__guarantee {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 156, 52, 0.2);
  border-radius: 4px;
}
.c-checkout__guarantee svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.c-checkout__guarantee--top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #009C34;
  background: rgba(0, 156, 52, 0.0509803922);
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
  padding: 12px 16px;
}
.c-checkout__guarantee p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  padding: 10px 16px;
}
.c-checkout__help {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--clr-sectxt);
  margin: 20px 0 0;
}
.c-checkout__help a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--clr-blue);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.c-checkout__help a:hover {
  opacity: 0.7;
}
.c-checkout__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.c-checkout__fieldset.gap-0 {
  margin: 0;
}
.c-checkout__legend {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 4%;
  color: var(--clr-black);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 0;
  width: 100%;
}
.c-checkout__row {
  margin-bottom: 16px;
}
.c-checkout__row:last-child {
  margin-bottom: 0;
}
.c-checkout__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.c-checkout__field {
  position: relative;
}
.c-checkout__field input[type=text],
.c-checkout__field input[type=email],
.c-checkout__field input[type=tel],
.c-checkout__field input[type=password],
.c-checkout__field select {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 26px;
  color: #999999;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 50px;
  padding: 12px 20px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  background: var(--clr-white);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.c-checkout__field input:focus,
.c-checkout__field select:focus {
  border-color: var(--clr-black);
}
.c-checkout__field input::placeholder {
  color: #999;
}
.c-checkout__field select {
  background: url("../images/Caret-Down.svg") no-repeat;
  background-repeat: no-repeat;
  background-position: right 17px center;
  padding-right: 38px;
  color: #999;
}
.c-checkout__field-error,
.c-checkout__field input.c-checkout__field-error,
.c-checkout__field select.c-checkout__field-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 1px #e74c3c !important;
}
.c-checkout__field-msg {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.3;
}
.c-checkout__field.custom-placeholder {
  position: relative;
}
.c-checkout__field.custom-placeholder .placeholder {
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  color: #999999;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.2s ease;
}
.c-checkout__field.custom-placeholder .placeholder .required {
  color: red;
}
.c-checkout__field.custom-placeholder-select {
  position: relative;
}
.c-checkout__field.custom-placeholder-select:after {
  content: "*";
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  color: red;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  pointer-events: none;
}
.c-checkout__stripe-field > div {
  height: 46px;
  padding: 13px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: var(--clr-white);
  transition: border-color 0.2s ease;
}
.c-checkout__stripe-field > div.StripeElement--focus {
  border-color: var(--clr-black);
}
.c-checkout__stripe-field > div.StripeElement--invalid {
  border-color: #dc2626;
}
.c-checkout__recaptcha {
  margin-bottom: 18px;
}
.c-checkout__recaptcha .g-recaptcha {
  transform: scale(0.9);
  transform-origin: left top;
}
.c-checkout__terms {
  font-family: var(--body-fonts);
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: var(--clr-sectxt);
  margin-bottom: 24px;
}
.c-checkout__terms label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.c-checkout__terms input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--clr-blue);
  cursor: pointer;
}
.c-checkout__terms span a {
  display: inline;
}
.c-checkout__terms a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--clr-sectxt);
  text-decoration: underline;
}
.c-checkout__terms a:hover {
  color: var(--clr-blue);
}
.c-checkout__terms .custom-checkbox {
  position: relative;
}
.c-checkout__terms .custom-checkbox__check {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #999999;
  left: 4px;
  top: 1px;
  pointer-events: none;
}
.c-checkout__terms .custom-checkbox__check::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/check-mark-white.svg") no-repeat;
  width: 16px;
  height: 16px;
  background-color: #000;
  background-size: contain;
  background-position: center;
  opacity: 0;
}
.c-checkout__terms .custom-checkbox .term-and-condition {
  opacity: 0;
}
.c-checkout__terms .custom-checkbox input[type=checkbox]:checked + .custom-checkbox__check {
  border: 1px solid #000;
}
.c-checkout__terms .custom-checkbox input[type=checkbox]:checked + .custom-checkbox__check::after {
  opacity: 1;
}
.c-checkout__submit {
  font-family: var(--body-fonts);
  line-height: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 24px;
  background: var(--clr-blue);
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  transition: 0.5s ease;
}
.c-checkout__submit:hover {
  background: var(--clr-dark-blue);
}
.c-checkout__submit.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.c-checkout__submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.c-checkout__powered-by {
  font-family: var(--body-fonts);
  text-align: center;
  color: #666666;
  margin-top: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.c-checkout__powered-by img {
  width: 44px;
  height: 18px;
  object-fit: contain;
}
.c-checkout__powered-by strong {
  color: var(--clr-black_60);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.coupon_message_cou,
.coupon_message_success {
  font-size: 13px;
  margin-top: 6px;
  font-family: var(--body-fonts);
}

.coupon_message_cou {
  color: #dc2626;
}

.coupon_message_success {
  color: #16a34a;
}

.tab-data-plan {
  display: none;
}
.tab-data-plan.active {
  display: block;
}

.email_error {
  font-size: 12px;
  margin-top: 4px;
  font-family: var(--body-fonts);
}

#loader {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-top-color: #1638FB;
  border-radius: 50%;
  animation: emailSpin 0.6s linear infinite;
  margin-top: 4px;
}

@keyframes emailSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
#card-errors {
  color: #dc2626;
  font-size: 13px;
  min-height: 18px;
  margin-top: 4px;
  font-family: var(--body-fonts);
}

#captchaError {
  font-size: 13px;
  margin-top: 4px;
}

input[type=hidden] {
  display: none !important;
}

.c-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.c-booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.c-booking-modal__content {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 95vh;
  height: 90vh;
  background: var(--clr-white);
  border-radius: 12px;
  overflow-y: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.c-booking-modal__intro {
  text-align: center;
  padding: 30px 30px 10px;
  flex-shrink: 0;
}
.c-booking-modal__avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e5e5;
}
.c-booking-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-booking-modal__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-black);
  margin: 0 0 10px;
}
.c-booking-modal__text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0 auto 8px;
  max-width: 400px;
}
.c-booking-modal__calendar {
  flex: 1;
  min-height: 600px;
  height: 600px;
}
.c-booking-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--clr-black);
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}

@media (max-width: 1199px) {
  .c-checkout__left {
    padding: 56px clamp(16px, 4vw, 104px) 64px 0;
  }
  .c-checkout__right {
    padding: 56px 0 64px clamp(16px, 4vw, 104px);
  }
}
@media (max-width: 1024px) {
  .c-checkout {
    padding: var(--pt, 0px) var(--px, 0px) var(--pb, 0px);
  }
  .c-checkout::after {
    display: none;
  }
  .c-checkout__columns {
    flex-direction: column;
    min-height: auto;
  }
  .c-checkout__left {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .c-checkout__left--column {
    max-width: 100%;
  }
  .c-checkout__left, .c-checkout__right {
    width: 100%;
    padding: 32px 20px;
  }
  .c-checkout__help {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .c-checkout__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .c-checkout__row--half {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .c-checkout__intervals {
    flex-direction: column;
  }
  .c-checkout__plan-selected {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .c-booking-modal__content {
    width: 95%;
    height: 85vh;
  }
}
@media (max-width: 480px) {
  .c-checkout__title {
    font-size: 20px;
  }
  .c-checkout__plan-price {
    font-size: 18px;
  }
  .c-checkout__plan-price sub {
    font-size: 16px;
    top: -1px;
  }
  .c-checkout__total > strong {
    font-size: 20px;
  }
  .c-checkout__submit {
    height: 48px;
    font-size: 15px;
  }
}
.e2m-membercard {
  max-width: 600px;
  margin: clamp(40px, 25.92px + 3.76vw, 80px) auto;
  padding: 0 20px;
}
.e2m-membercard form {
  background-color: #F2F2F2;
  padding: clamp(20px, 15.77px + 1.13vw, 32px) clamp(20px, 12.96px + 1.88vw, 40px);
  border-radius: 4px;
}
.e2m-membercard .price {
  margin: 0 0 10px;
}
.e2m-membercard__title {
  margin-bottom: 16px;
}
.e2m-membercard__secure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.e2m-membercard__secure img {
  max-width: 120px;
  height: auto;
}
.e2m-membercard__card-wrap {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #fff;
}
.e2m-membercard__ssl {
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}
.e2m-membercard__ssl::before {
  content: "🔒";
  position: absolute;
  left: 0;
  top: 0;
}
.e2m-membercard__error {
  display: block;
  color: #e53e3e;
  font-size: 14px;
  margin-bottom: 12px;
  min-height: 20px;
}
.e2m-membercard__info {
  margin-bottom: 16px;
}
.e2m-membercard__terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}
.e2m-membercard__terms input[type=checkbox] {
  margin-top: 3px;
}
.e2m-membercard__terms a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--clr-blue);
  transition: 0.3s ease;
}
.e2m-membercard__terms a:hover {
  opacity: 0.7;
}
.e2m-membercard__btn {
  font-family: var(--body-fonts);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 24px;
  width: 100%;
  background: var(--clr-blue);
  color: #fff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.5s ease;
}
.e2m-membercard__btn:hover {
  background: var(--clr-dark-blue);
}
.e2m-membercard__btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.e2m-membercard__loader {
  display: none;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  padding: 10px 0;
}

.page-loader .e2m-membercard__loader {
  display: block;
}
.page-loader .e2m-membercard form {
  opacity: 0.5;
  pointer-events: none;
}

/*# sourceMappingURL=checkout.css.map */
