.schedule_popup {
  inset: 0;
  position: fixed;
  background-color: var(--colorSilver);
  z-index: 2;
  display: none;
}
.schedule_popup__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 42px;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.schedule_popup__inner {
  max-width: 1055px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.schedule_popup__close_button_wrapper {
  display: flex;
  justify-content: flex-end;
}
.schedule_popup__close_button {
  background-color: var(--colorPrimary);
  color: var(--colorWhite);
  max-width: 249px;
  width: 100%;
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 171.4%;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 7px 14px 7px 23px;
  transition: 200ms;
}
.schedule_popup__close_button:hover {
  transform: var(--anchorHoverScale);
}
.schedule_popup__box {
  backdrop-filter: blur(40px);
  background: hsla(0,0%,100%,.2);
  border: 1px solid hsla(0,0%,100%,.1);
  border-radius: 24px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding: 28px;
}
.schedule_popup__box_left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: 24px 5px 70px 24px;
}
.schedule_popup__box_left::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 30px);
  width: 1px;
  opacity: 0.3;
  background: rgba(0, 15, 54, 0.40);
}
.schedule_popup__box_subtitle {
  color: rgba(0, 15, 54, 0.60);
}
.schedule_popup__box_title {
  font-size: 28px;
  line-height: 150%;
}
.schedule_popup__box_meta {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schedule_popup__box_meta li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.schedule_popup__box_meta img {
  width: 20px;
}
.schedule_popup__box_meta span {
  color: rgba(0, 15, 54, 0.60);
  font-family: var(--fontThird);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.schedule_popup__box_cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.schedule_popup__box_cards_title {
  font-size: 24px;
  line-height: 125%;
}
.schedule_popup__box_cards_list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 33px;
}
.schedule_popup__box_cards_item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.schedule_popup__box_cards_item img {
  width: 20px;
}
.schedule_popup__box_cards_item p {
  font-size: 12px;
  line-height: 110%;
  font-family: var(--fontSecondary);
}

{# /-/-/-/-/-/-/-/-/ #}
{# Form start #}
{# /-/-/-/-/-/-/-/-/ #}

.schedule_popup__form {
  min-height: 100%;
  display: flex;
  padding-bottom: 12px;
  max-width: 443px;
  width: 100%;
  margin-left: auto;
}
.schedule_popup__form .hbspt-form {
  min-height: 100%;
  width: 100%;
}
.schedule_popup__form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.schedule_popup__form_step {
  display: none;
  flex: 1;
}
.schedule_popup__form_step_inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.schedule_popup__form_step.active {
  display: flex;
}
.schedule_popup__form_step_inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.schedule_popup__form_step_fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.schedule_popup__form_step_custom_label {
  font-size: 24px;
  line-height: 150%;
  font-weight: 300;
}
.schedule_popup__form_step_custom_label strong {
  font-weight: 400;
}
.schedule_popup__form .hs_are_you_an_agency_brand_or_vendor .multi-container {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.schedule_popup__form .hs_are_you_an_agency_brand_or_vendor .multi-container li {
  flex: 1;
}
.schedule_popup__form .hs_are_you_an_agency_brand_or_vendor .multi-container label {
  background-color: var(--colorAccent);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--colorPrimary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 17px 7px 22px;
  position: relative;
  cursor: pointer;
}
.schedule_popup__form .hs_are_you_an_agency_brand_or_vendor .multi-container label::after {
  content: '';
  width: 10px;
  aspect-ratio: 1 / 1;
  border: 1.5px solid var(--colorPrimary);
  border-radius: 50%;
  display: flex;
  align-items: center;
}
.schedule_popup__form .hs_are_you_an_agency_brand_or_vendor .multi-container input {
  position: absolute;
  opacity: 0;
  width: auto !important;
}
.schedule_popup__form .hs_are_you_an_agency_brand_or_vendor .multi-container label:has(input:checked)::after {
  background-color: var(--colorPrimary);
}
.schedule_popup__form form ::placeholder {
  var(--colorPrimary40);
}
.schedule_popup__form fieldset {
  display: flex;
  gap: 17px;
}
.schedule_popup__form fieldset>* {
  flex: 1;
  width: 100% !important;
}
.schedule_popup__form .hs-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule_popup__form .hs-form-field>label {
  font-size: 12px;
  line-height: 1;
}
.hs_are_you_an_agency_brand_or_vendor>label {
  display: none;
}
.schedule_popup__form .hs_hs_timezone>label {
  font-size: 16px;
  font-weight: 700;
}
.schedule_popup__form .hs_custom_date>label {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--fontThird);
}
.schedule_popup__form .input {
  margin-right: 0 !important;
}
.schedule_popup__form .hs-input {
  width: 100% !important;
  border: 1px solid var(--colorPrimary40);
  border-radius: 4px;
  font-size: 12px;
  max-width: none;
  width: 100%;
  padding: 10px 13px;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.schedule_popup__form .hs-input:focus {
  border-color: var(--colorPrimary70);
}
.schedule_popup__form .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: var(--colorError);
  line-height: 1.3;
}
.schedule_popup__form .hs_error_rollup {
  display: none;
}
.schedule_popup__form .hs_hs_timezone .hs-input {
  border: 0;
  padding: 0;
  font-size: 14px;
  background-image: url(https://merchantspring.io/hubfs/2026/timezone.svg), url(https://merchantspring.io/hubfs/2026/popup_select_arrow.svg);
  background-size: 14px, 8px;
  background-position: left center, right center;
  background-repeat: no-repeat;
  padding-left: 26px;
  appearance: none;
}
.schedule_popup__form_buttom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-end;
  font-size: 14px;
  text-transform: uppercase;
  border: 0;
  background-color: var(--colorAccent);
  border-radius: 40px;
  position: relative;
  padding: 11px 13px 11px 22px;
  gap: 8px;
  transition: 200ms;
  width: 170px;
}
.schedule_popup__form_buttom::after {
  content: '';
  width: 8px;
  height: 12px;
  background-image: url(https://21095735.fs1.hubspotusercontent-na1.net/hubfs/21095735/2026/submit_arrow_primary.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  top: -1px;
}
.schedule_popup__form_buttom:hover {
  transform: var(--anchorHoverScale);
}
#schedule_popup__form_buttom1 {
  width: 95px;
}
.schedule_popup__form .hs-submit .actions {
  display: flex;
  justify-content: flex-end;
}
.schedule_popup__form .hs_submit input {
  background-color: var(--colorAccent);
  background-image: url(https://21095735.fs1.hubspotusercontent-na1.net/hubfs/21095735/2026/submit_arrow_primary.svg);
  background-position: right 19px center;
  background-repeat: no-repeat;
  background-size: 8px;
  border: 0;
  border-radius: 40px;
  color: var(--colorPrimary);
  cursor: pointer;
  font-size: 14px;
  line-height: 110%;
  min-width: 170px;
  padding: 12px 22px;
  text-align: left;
  text-transform: uppercase;
  transition: .2s;
}
.schedule_popup__form .hs_submit input:hover {
  transform: var(--anchorHoverScale);
}
.schedule_popup__form .hs-custom_date :is(.hs-input) {
  display: none;
}
.schedule_popup__form .hs-custom_date .input {
  margin-top: 16px;
}
.schedule_popup__form_step[data-step-3] .schedule_popup__form_step_fields {
  gap: 32px;
}
