.schedule-contact-forms {
    max-width: 850px;
  margin: 0 auto;
}
.schedule-contact-forms__tabs {
  display: flex;
  position: sticky;
  top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 0px));
  z-index: 10;
}

.schedule-contact-forms__tabs .schedule-contact-forms__tab {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #fff;
  width: 50%;
  text-transform: uppercase;
  text-align:center;
  font-weight: 800;
  font-size: var(--fs-24);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.2em;
  border: 3px solid var(--primary);
  color: var(--primary);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.schedule-contact-forms__tabs .schedule-contact-forms__tab:hover {
  color: var(--mid-blue);
  border: 3px solid var(--mid-blue);
}

.schedule-contact-forms__tabs .schedule-contact-forms__tab svg {
  margin-left: 12px;
  transition: transform 0.25s ease;
}

.schedule-contact-forms__tabs .schedule-contact-forms__tab.active {
  background: var(--mid-blue);
  color: #fff;
  border: none;
}

.schedule-contact-forms__tabs .schedule-contact-forms__tab.active svg {
  transform: rotate(-180deg);
}

.schedule-contact-forms__forms .schedule-contact-forms__form {
  display: none;
  background: #fff;
  padding: 48px;
  position: relative;
}

.schedule-contact-forms__forms .schedule-contact-forms__form.active {
  display: block;
}

.schedule-contact-forms .schedule-contact-forms__form p {
  text-align: center;
  font-size: var(--fs-20, 20px);
  line-height: 2;
}

.schedule-contact-forms .schedule-contact-forms__intro {
  max-width: 600px;
  margin: 0 auto;
}

.schedule-contact-forms .schedule-contact-forms__form p.schedule-contact-forms__title {
  font-family: var(--ff-accentGraphic);
  font-size: var(--fs-48);
  line-height: 1.2752;
  text-align: center;
}

.schedule-contact-forms form.hs-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
  margin-top: 28px;
}

.schedule-contact-forms form.hs-form fieldset {
  width: 100%;
}
.schedule-contact-forms .schedule-contact-forms__form p.schedule-contact-forms__disclaimer{
  font-size: 16px;
}

.schedule-contact-forms__tabs.has-active .schedule-contact-forms__tab:last-child {
    border-left: none;
}
.schedule-contact-forms__tabs.has-active .schedule-contact-forms__tab:first-child {
    border-right: none;
}
.schedule-contact-forms__tabs:not(.has-active)  .schedule-contact-forms__tab:first-child {
  border-right: none;
}

.schedule-contact-forms--community-page .hs_communities_list {
    display: none;
}
.schedule-contact-forms .submitted-message {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: #fff;
  width: 100%;
  padding: 80px 0;
}
.schedule-contact-forms .submitted-message__title {
  font-size: var(--fs-48) !important;
  font-family: var(--ff-accentGraphic);
  padding-bottom: 0;
  line-height: 1.25 !important;
}

.schedule-contact-forms .submitted-message__intro {
  font-size: var(--fs-18);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.67 !important;
}


@media screen and (max-width: 980.99px) {
  .schedule-contact-forms__forms .schedule-contact-forms__form {
	padding: 48px 12px;
  }
.schedule-contact-forms__tabs .schedule-contact-forms__tab {
    padding: 10px 12px;
	letter-spacing: 0.1em;
    line-height: 1.25;
  }
  .schedule-contact-forms__tabs {
	top: -1px;
  }

}