@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");

.form-content {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0 40px 0;
  width: 100% !important;
  max-width: 100% !important;
  padding-top: 50px;
  height: 100%;
  padding-bottom: 300px;
  /* min-height: 100vh; */
  text-align: left;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 50px 0;
}

.form_wrap {
  direction: rtl;
  font-family: sans-serif;
  width: calc(100% - 8rem);
  max-width: 120rem;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
}

.step .number {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
}

.step.active .number,
.step.completed .number {
  background: #f5efe0;
}

.step .step_info {
  color: #947847;
  padding: 0 8px;
  font-size: 20px;
  line-height: 20px;
  text-align: right;
}

.step_info-mobile {
  display: none;
}

.step.active .step_info,
.step.active .step_info-mobile {
  color: #162139;
}

.step.completed .step_info,
.step.completed .step_info-mobile {
  color: #162139;
}

.step:not(.completed) .number svg {
  width: 30px;
  display: none;
}

.form__text-content {
  text-align: center;
  margin-bottom: 40px;
}

.form__title div {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: bold;
  color: #162139;
}

.form__fields {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.form__fields .wrap-form {
  text-align: right;
}

.second-step .form__fields,
.third-step .form__fields {
  flex-direction: row;
	align-items: end;
}

.second-step__description {
  text-align: center;
  padding-bottom: 20px;
  font-size: 17px;
  width: 60%;
  margin: 0 auto;
}

.agreement_pdf {
  text-align: center;
  padding-bottom: 40px;
  display: flex;
  align-items: baseline;
}

.agreement_pdf label {
  margin-right: 10px;
}

.wrap-form .agreement_pdf input {
  margin: 0 !important;
  height: 25px;
  width: 25px;
  border-radius: 4px;
  border-color: #947847;
}

.wrap-form label {
  /* display: none; */
  text-align: right;
  color: #162139;
  font-weight: 600;
}

.wrap-form input[type="text"],
.wrap-form input[type="date"],
.wrap-form input[type="tel"],
.wrap-form input[type="email"],
.wrap-form select,
.wrap-form date {
  background: #fff;
  color: #162139 !important;
  flex: 1 1 auto !important;
  line-height: 20px !important;
  padding: 15px !important;
  max-width: 100% !important;
  border-radius: 5px !important;
  font-size: 18px !important;
  min-width: 350px !important;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
  outline: 0 !important;
  border: 1px solid #947847 !important;
  margin: 0 0 20px 15px !important;
}

.wrap-form input::placeholder {
  color: #162139;
}

.signature-pad--body {
  overflow: hidden;
}

@media (max-width: 768px) {
  form {
    text-align: center;
  }
}

.wrap-form input[type="checkbox"] {
  min-width: auto !important;
}

.wrap-form input:focus,
.wrap-form checkbox:focus,
.wrap-form select:focus,
.wrap-form select:date {
  border-color: #91b83c !important;
}

.input[type="checkbox"] {
  border-color: #947847 !important;
}

input[type="checkbox"]:checked::before {
  height: 25px;
  width: 25px;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}

.wrap_button_div {
  margin-top: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .wrap_button_div {
    align-items: center;
  }
}

.btn-container {
  display: flex;
  flex-direction: column;
}

.free-step__join-btn {
  margin: 10px 0;
}

.free-step__join-btn,
.cost-step__join-btn,
.next-btn,
.wrap_button_div .save,
.wrap_button_div .result_pdf,
.send-btn,
.validate_birthday {
  font-size: 24px;
  color: #fce194 !important;
  background: #162139 !important;
  min-width: 220px;
  transition: all 0.4s;
  border: none;
  border-radius: 4px;
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14),
    0 1px 8px 0 rgba(0, 0, 0, 0.12) !important;
  padding: 11px 5px;
  text-decoration: unset;
}

.free-step__join-btn:hover,
.cost-step__join-btn:hover,
.send-btn:hover,
.next-btn:hover,
.wrap_button_div .save:hover,
.wrap_button_div .result_pdf:hover,
.validate_birthday:hover {
  background: #fce194 !important;
  color: #162139 !important;
  text-decoration: unset;
}

.free-step__join-btn:focus,
.cost-step__join-btn:focus,
.send-btn:focus,
.next-btn:focus {
  text-decoration: unset;
}

.wrap-form {
  position: relative;
  margin-bottom: 20px;
}

.error {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  padding: 0 15px;
  color: red;
  font-size: 12px;
  text-align: right;
}

.invalid-field {
  border-color: red !important;
}

.prev-btn {
  color: #162139 !important;
  background: none !important;
  border: none !important;
  transition: all 0.4s;
  display: inline;
  margin: 0 auto;
}

.prev-btn:hover {
  color: #fce194 !important;
  /* opacity: .8; */
}

.number svg {
  width: 30px;
}

.bt_preview svg {
  width: 13px;
  margin: 0 4px;
}

.bt_preview {
  color: #000000de;
  text-decoration: none;
  font-size: 14px;
  background: #eceff1 !important;
  padding: 10px;
  border: 1px solid #777;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.bt_preview:hover {
  background: #eceff1 !important;
}

.label-wrap-formanger {
  color: #333 !important;
  font-size: 17px;
  text-align: center;
  margin-bottom: 10px;
}

.agreement_pdf-container {
  width: 100% !important;
  margin: 0 auto !important;
}

.signature-pad .description {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.wrap_button_div .result_pdf {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden,
.step.completed .number .digit {
  display: none;
}

[name="tel"] {
  direction: ltr;
  text-align: right;
}

[name="email"] {
  direction: rtl !important;
}

.wrap-form input.error-field,
.wrap-form select.error-field {
  border: 1px solid red !important;
}

.wrap-form input.success-field,
.wrap-form select.success-field {
  border: 1px solid #91b83c !important;
}

@media (max-width: 768px) {
  .step_info {
    display: none;
  }

  .step_info-mobile {
    display: block;
    text-align: center;
  }

  .wrap-12 {
    flex-wrap: wrap;
  }
}

.steps {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.step::before {
  position: absolute;
  content: "";
  border-bottom: 4px solid #947847;
  width: 100%;
  top: 8px;
  left: -50%;
  z-index: 2;
}

.step::after {
  position: absolute;
  content: "";
  border-bottom: 4px solid #947847;
  width: 100%;
  top: 8px;
  left: 50%;
  z-index: 2;
}

.step .number {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5efe0;
  margin-bottom: 6px;
  border: 4px solid #947847;
}

.step.active .number {
  border: 4px solid #162139;
}

.step.active {
  font-weight: bold;
}

.step.completed .number {
  background-color: #162139;
  border: 4px solid #162139;
}

.step.completed::before {
  position: absolute;
  content: "";
  border-bottom: 4px solid #162139;
  width: 100%;
  top: 8px;
  right: 50%;
  z-index: 3;
}

.steps .step:first-child:after {
  content: none;
}

.steps .step:last-child:before {
  content: none;
}

@media (max-width: 768px) {
  .step {
    font-size: 12px;
  }
}

.date-mask__container {
  /* position: relative; */
  display: flex;
  justify-content: space-between;
}

.date-mask__container>div {
  width: calc(33% - 10px);
}

.data_tz-img {
  position: absolute;
  top: 0;
  /* transform: translateY(-50%); */
  left: 0;
}

.data_tz-img__pop-up {
  display: none;
  position: absolute;
  top: 42px;
  width: 100%;
  left: 100%;
  border: 1px solid #000;
  border-radius: 20px;
}

.date-mask__container>img:hover+.data_tz-img__pop-up {
  display: block;
  background: #fff;
  padding: 20px;
  z-index: 10;
  width: 550px;
}

.data_tz-img__pop-up img {
  width: 100%;
}

.join-us {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.join-us form {
  width: calc(33% - 20px);
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.join-us__item {
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  width: 100%;
}

.join-us form:first-child {
  transform: scale(1.05);
}

.join-us form:first-child:hover {
  transform: scale(1.08);
}

.join-us .join-us__item:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 10px 10px rgb(79 129 188 / 50%);
}

.join-us__title {
  position: relative;
  padding: 20px 0;
  font-size: 24px;
  border-radius: 30px 30px 0 0;
  text-align: left;
  padding-left: 20px;
}

.join-us__title.blue-family {
  font-size: 26px;
}

.join-us__title span {
  border-bottom: 4px solid #162139;
  padding-bottom: 10px;
}

.join-us__title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fce194;
  clip-path: polygon(100% 0, 55% 0, 100% 85%);
  border-radius: 30px 30px 0 0;
}

.blue-family:before {
  border: 4px solid #947847;
  background: #162139;
}

.join-us form:first-child .join-us__title span {
  border-bottom: 4px solid #947847;
}

.join-us form:first-child .join-us__title {
  /* background: #162139; */
  /* color: #FCE194; */
}

.join-us__content {
  text-align: right;
  padding: 20px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.join-us__text {
  font-size: 24px;
}

.join-us__text ul {
  list-style: none;
  padding: 0;
}

.join-us__text ul li::before {
  content: "\F633";
  margin-left: 10px;
  font-size: 20px;
  color: #c36;
}

.family-step__content ul li::before {
  content: "\F633";
  margin-left: 10px;
  color: #c36;
}

/* .new-sticker::after {
    content: 'שירות חדש';
    font-size: 12px;
    position: absolute;
    background: #FCE194;
    padding: 2px;
    color: #fff;
    margin-right: 10px;
    font-weight: bold;
    transform: rotate(-45deg);
} */

.join-us__bottom {
  text-align: center;
}

.join-us__button {
  margin: 20px 0;
}

.join-us__button button {
  background: #162139;
  color: #fce194;
  text-decoration: none;
  padding: 10px 30px;
  border: unset;
}

.join-us__button button:hover,
.join-us__button button:focus {
  background: #fce194;
  color: #162139;
}

.join-us__undersign a {
  text-decoration: underline;
  color: #162139;
}

.family-step__content {
  display: flex;
  text-align: center;
  padding-bottom: 50px;
  justify-content: space-around;
}

.family-step__content .family-step__right,
.family-step__content .family-step__left {
  width: calc(50% - 200px);
  text-align: right;
}

.family-step__right li {
  font-size: 18px;
}

.family-step__content .form__title {
  font-size: 24px;
  font-weight: bold;
}

.family-step__content ul {
  list-style-position: inside;
  list-style: none;
  padding: 0;
}

.family-step__content ul li {}

.family-step .agreement_pdf {
  padding-bottom: 10px;
}

.cost-step {
  display: flex;
}

.cost-step__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cost-step__item.payment-container form {
  max-width: 70%;
}

.cost-step__title {
  display: flex;
  text-align: center;
  font-size: 38px;
}

.cost-step__title svg {
  margin-right: 20px;
}

.cost-step__desc {
  text-align: right;
  font-size: 32px;
}

.cost-step__btn {
  text-align: center;
}

.payment-container {
  padding: 20px;
  text-align: right;
}

.pay-form__total,
.pay-form__pay-btn,
.pay-form__desc {
  text-align: center;
}

.pay-form__label {
  background: #162139;
  color: #fce194;
  padding: 10px 20px;
  text-align: center;
  border-radius: 4px;
}

.pay-form__form {
  border: 1px solid;
  border-radius: 4px;
}

.payment-container input {
  margin-bottom: 20px;
}

.payment-form__date {
  display: flex;
}

.form-container {
  padding: 20px;
}

.free-step__label {
  text-align: center;
  font-size: 38px;
}

.free-step__label-desc {
  text-align: center;
  font-size: 24px;
}

.free-step__label-desc ul {
  list-style-position: inside;
}

.free-step__item {
  width: 50%;
  text-align: center;
}

.free-step__title {
  font-size: 32px;
}

.graph-conteiner {
  text-align: center;
}

.animation {
  display: flex;
  align-items: flex-end;
  height: 600px;
  /* width: 50%; */
  position: relative;
  font-size: 18px;
  justify-content: center;
  background: url(../img/last-img.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 20px auto;
}

.animation-free {
  display: flex;
  align-items: flex-end;
  height: 300px;
  /* width: 50%; */
  position: relative;
  font-size: 18px;
  justify-content: center;
  background: url(../img/last-img-free.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 20px auto;
}

.free-step__items {
  display: flex;
  align-items: center;
}

.animation-graph-1 {
  width: 100px;
  height: 0;
  background-color: #162139;
  color: rgba(255, 255, 255, 0);
  -webkit-animation-name: example;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-delay: 1s;
  /* Safari 4.0 - 8.0 */
  animation-name: example;
  animation-duration: 2s;
  animation-delay: 1s;
  margin: 0 20px;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

.animation-graph-2 {
  width: 100px;
  height: 0;
  background-color: #162139;
  color: rgba(255, 255, 255, 0);
  -webkit-animation-name: example2;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-delay: 3s;
  /* Safari 4.0 - 8.0 */
  animation-name: example2;
  animation-duration: 2s;
  animation-delay: 3s;
  margin: 0 20px;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

.animation-graph-3 {
  width: 100px;
  height: 0;
  background-color: #162139;
  color: rgba(255, 255, 255, 0);
  -webkit-animation-name: example3;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-delay: 5s;
  /* Safari 4.0 - 8.0 */
  animation-name: example3;
  animation-duration: 2s;
  animation-delay: 5s;
  margin: 0 20px;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

.animation-graph-4 {
  width: 100px;
  height: 0;
  background-color: #162139;
  color: rgba(255, 255, 255, 0);
  -webkit-animation-name: example4;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-delay: 7s;
  /* Safari 4.0 - 8.0 */
  animation-name: example4;
  animation-duration: 2s;
  animation-delay: 7s;
  margin: 0 20px;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

.new-sticker::after {
  content: "שירות חדש";
  font-size: 12px;
  position: absolute;
  background: #c36;
  padding: 2px;
  color: #fff;
  margin-right: 5px;
  font-weight: bold;
  /* transition: all 0.5s ease; */
  /* animation: ee 2s linear infinite; */
  transform: rotate(-15deg);
}

/* 
@-webkit-keyframes ee {
    from {
        transform: scale(1.2);
      }
} */

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
  0% {
    height: 0px;
  }

  10% {
    height: 0px;
  }

  20% {
    height: 10px;
  }

  30% {
    height: 20px;
  }

  40% {
    height: 30px;
  }

  50% {
    height: 40px;
  }

  60% {
    height: 40px;
  }

  70% {
    height: 40px;
  }

  80% {
    height: 40px;
  }

  90% {
    height: 40px;
  }

  100% {
    height: 40px;
  }
}

/* Standard syntax */
@keyframes example {
  0% {
    height: 0px;
  }

  10% {
    height: 10px;
  }

  20% {
    height: 20px;
  }

  30% {
    height: 30px;
  }

  40% {
    height: 40px;
  }

  50% {
    color: rgb(255, 255, 255);
    height: 50px;
  }

  60% {
    color: rgb(255, 255, 255);
    height: 60px;
  }

  70% {
    color: rgb(255, 255, 255);
    height: 70px;
  }

  80% {
    color: rgb(255, 255, 255);
    height: 80px;
  }

  90% {
    color: rgb(255, 255, 255);
    height: 90px;
  }

  100% {
    color: rgb(255, 255, 255);
    height: 100px;
  }
}

@keyframes example2 {
  0% {
    height: 0px;
  }

  10% {
    height: 15px;
  }

  20% {
    height: 30px;
  }

  30% {
    height: 40px;
  }

  40% {
    height: 55px;
  }

  50% {
    color: rgb(255, 255, 255);
    height: 70px;
  }

  60% {
    color: rgb(255, 255, 255);
    height: 80px;
  }

  70% {
    color: rgb(255, 255, 255);
    height: 95px;
  }

  80% {
    color: rgb(255, 255, 255);
    height: 110px;
  }

  90% {
    color: rgb(255, 255, 255);
    height: 125px;
  }

  100% {
    color: rgb(255, 255, 255);
    height: 140px;
  }
}

@keyframes example3 {
  0% {
    height: 0px;
  }

  10% {
    height: 10px;
  }

  20% {
    height: 25px;
  }

  30% {
    height: 50px;
  }

  40% {
    height: 70px;
  }

  50% {
    color: rgb(255, 255, 255);
    height: 90px;
  }

  60% {
    color: rgb(255, 255, 255);
    height: 110px;
  }

  70% {
    color: rgb(255, 255, 255);
    height: 130px;
  }

  80% {
    color: rgb(255, 255, 255);
    height: 150px;
  }

  90% {
    color: rgb(255, 255, 255);
    height: 165px;
  }

  100% {
    color: rgb(255, 255, 255);
    height: 180px;
  }
}

@keyframes example4 {
  0% {
    height: 0px;
  }

  10% {
    height: 10px;
  }

  20% {
    height: 25px;
  }

  30% {
    height: 50px;
  }

  40% {
    height: 80px;
  }

  50% {
    color: rgb(255, 255, 255);
    height: 110px;
  }

  60% {
    color: rgb(255, 255, 255);
    height: 130px;
  }

  70% {
    color: rgb(255, 255, 255);
    height: 155px;
  }

  80% {
    color: rgb(255, 255, 255);
    height: 180px;
  }

  90% {
    color: rgb(255, 255, 255);
    height: 200px;
  }

  100% {
    color: rgb(255, 255, 255);
    height: 220px;
  }
}

.date-mask__container select {
  min-width: 100px !important;
}

.form-container label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-field {
  display: block;
  width: 100% !important;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #162139;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #947847;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.pay-form__card-num {
  display: flex;
  align-items: flex-end;
}

.payment-form__date {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.payment-form__date .pay-form-container {
  width: calc(50% - 10px);
}

.pay-form-container {
  width: 100%;
}

.card-payment__cart--photo img {
  padding-bottom: 5px;
}

.pay-form__card-num,
.pay-form-container {
  margin-bottom: 10px;
}

.thankyou-page {
  text-align: center;
  padding: 20px 0;
}

.thankyou-page__title {
  font-size: 32px;
}

.wa-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type="date"]:before {
  color: lightgrey;
  content: attr(placeholder) !important;
  margin-right: 0.5em;
}

input[type="date"]:focus:before {
  content: "" !important;
}

input[type="date"]:required:invalid::-webkit-datetime-edit {
  color: transparent;
}

input[type="date"]:focus::-webkit-datetime-edit {
  color: black !important;
}

.main__title {
  font-size: 38px;
  font-weight: bold;
}

@media (max-width: 1300px) {
  .data_tz-img__pop-up {
    left: 50%;
  }

  .join-us form {
    width: calc(50% - 20px);
    display: flex;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .data_tz-img__pop-up {
    left: 0;
  }

  .family-step__content .family-step__right,
  .family-step__content .family-step__left {
    width: calc(50% - 100px);
  }
}

.hover-doc__item {
  display: none;
}

.hover-doc:hover+.hover-doc__item {
  display: block;
  position: absolute;
  max-width: 50%;
  background: #fff;
  border: 1px solid;
  z-index: 2;
  padding: 20px;
}

@media (max-width: 768px) {
  .signature-pad {
    height: 200px;
  }

  .data_tz-img__pop-up {
    left: unset;
  }

  .second-step__description {
    width: 100%;
  }

  .join-us form {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .family-step__content {
    flex-wrap: wrap;
  }

  .family-step__content .family-step__right,
  .family-step__content .family-step__left {
    width: 100%;
  }

  .animation-graph-1,
  .animation-graph-2,
  .animation-graph-3,
  .animation-graph-4 {
    width: 70px;
    margin: 0 5px;
  }

  .second-step .wrap-form {
    margin: 0;
  }

  .cost-step__item {
    width: 100%;
    margin-bottom: 10px;
  }

  .cost-step__item form {
    width: 100%;
  }

  .payment-container {
    padding: 0;
  }

  .animation,
  .animation-free {
    height: 300px;
    margin: 0 auto;
  }

  .date-mask__container>img:hover+.data_tz-img__pop-up {
    width: 100%;
  }

  .cost-step__item.payment-container form {
    max-width: 100%;
  }

  .date-mask__container>div {
    width: calc(33% - 5px);
  }

  .agreement_pdf {
    align-items: baseline;
    justify-content: center;
  }

  .family-step__right {
    padding-bottom: 20px;
  }

  .date-mask__container select {
    width: 100%;
  }

  .form__fields .wrap-form {
    width: 100%;
    margin: 0;
    margin-bottom: 0;
  }

  .preview-container {
    max-width: 250px;
  }

  /* .wa-call {
    display: none;
  } */
  .form-content {
    padding: 20px 0;
  }

  .family-step__content {
    padding-bottom: 0;
  }

  .form__text-content {
    margin-bottom: 15px;
  }

  .free-step__items {
    flex-direction: column;
  }

  .free-step__item {
    width: 100%;
  }

  .hover-doc:hover+.hover-doc__item {
    max-width: 100%;
  }

  .form__title div {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .join-us__title {
    text-align: left;
    padding: 20px 5px;
  }

  /* .join-us__title::before {
    display: none;
  } */
  .join-us form:first-child,
  .join-us form:first-child:hover,
  .join-us .join-us__item:hover {
    transform: unset;
    box-shadow: unset;
  }

  .date-mask__container select {
    min-width: 70px !important;
    margin: 0 0 20px 5px !important;
  }

  .cost-step__desc {
    text-align: center;
  }

  .animation,
  .animation-free {
    height: 200px;
    width: 100%;
  }

  .form_wrap,
  .form__fields .wrap-form {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .agreement_pdf {
    padding-bottom: 25px;
  }

  .free-step__label {
    font-size: 29px;
  }

  .wrap_button_div {
    margin-top: 0;
  }

  .form__fields .checkbox-error .error {
    text-align: center;
  }

  .signature-pad {
    max-height: 200px !important;
  }

  .bt_preview {
    font-size: 12px;
    justify-content: center;
  }

  a.wa-call {
    width: 48px;
    bottom: 10px;
    right: 10px;
  }
}

#footer-callback {
  display: none;
}

.plugin-nav-menu,
.plugin-footer {
  display: none;
}

.form-container {
  position: relative;
}

.preloader {
  /*фиксированное позиционирование*/
  position: absolute;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #fff;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
}

.preloader__row {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #337ab7;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

.free-step__join-btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .85;
}
.pay-error {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #c92727;
}


@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.payment-loader {
  display: none;
}

.displayn {
  display: none;
}

#hidden-err {
  color: red;
  font-size: 14px;
}