/* POPUP */

/* //////////////////  FORM  //////////////////// */

.step {
  display: none;
}
.step.active-step {
  display: block;
}
.form-group {
  width: 100%;
  margin-top: 20px;
}
.form-group input {
  width: 100%;
  border: 1.5px solid rgba(128, 128, 128, 0.418);
  padding: 5px;
  font-size: 18px;
  margin-top: 5px;
  border-radius: 4px;
}
.contact-form {
  position: relative;
  width: 100%;
}
.contact-form__title {
  line-height: 1.5;
  text-align: center;
  color: #000;
  font-size: 25px;
  margin: 0 0 15px;
}
.contact-form__subtitle {
  position: relative;
  display: block;
  line-height: 1.5;
  text-align: center;
  color: #626262;
  font-size: 14px;
  margin-bottom: 20px;
}
.contact-form__header {
  line-height: 1.5;
  text-align: center;
  color: var(--black-4);
  font-size: 15px;
  margin: 0 0 9px;
}
.contact-form__message {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #cb0808;
    margin-bottom: 15px;
}
.contact-form__message-active {
  display: block;
}
.contact-form__step {
  position: relative;
  display: block;
  text-align: center;
  color: #626262;
  font-size: 14px;
  margin-bottom: 25px;
}
.contact-form__input {
  height: 58px;
  border: none;
  border-radius: 15px;
  width: 100%;
  background: #ffffff;
  margin-bottom: 20px;
  padding: 0 15px 0 25px;
  font-family: "VelaSans", sans-serif;
  font-size: 16px;
  color: #1d1d1f;
  border: 1px solid var(--l9-primary);
}
.contact-form__textaria {
  border: none;
  border-radius: 15px;
  width: 100%;
  background: #ffffff;
  margin-bottom: 20px;
  padding: 15px;
  font-family: "VelaSans", sans-serif;
  font-size: 16px;
  color: #1d1d1f;
  border: 1px solid var(--l9-primary);
}
.contact-form__input_file {
  display: none;
}
.contact-form__file-button {
  display: flex;
  align-items: center;
  height: 58px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  width: 100%;
  background: url("../img/file.svg") center left 15px no-repeat, #ffffff;
  background-size: 30px;
  margin-bottom: 20px;
  padding: 0 15px 0 59px;
  font-family: "VelaSans", sans-serif;
  font-size: 15px;
  color: #757575;
  cursor: pointer;
}
.contact-form__btn {
  display: flex;
  flex-direction: row;
}
.contact-form__button {
  position: relative;
  display: flex;
  justify-content: center;
  background: var(--green);
  width: 100%;
  padding: 22px 30px;
  border-radius: 15px;
  border: none;
  font-family: "VelaSans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-4);
  transition: 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form__button:hover {
  background: var(--black-4);
  color: var(--offwhite);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 5px 25px rgb(0 0 0 / 8%);
}
.wait {
  position: relative;
  display: none;
  text-align: center;
  margin-bottom: 15px;
  padding: 11px 8px;
  border-radius: 15px;
  background-color: #6a7ce7;
  font-family: "VelaSans", sans-serif;
  color: #fff;
  font-size: 16px;
}
.wait-active {
  display: block;
}
.ok {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border-radius: 19px;
  background-color: var(--offwhite);
  z-index: 1;
}
.ok-active {
  display: flex;
}
.ok h4 {
  position: relative;
  display: block;
  font-family: "VelaSans", sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 31px;
  margin-bottom: 10px;
  color: var(--black-4);
}
.ok span {
  position: relative;
  display: block;
  font-family: "VelaSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black-4);
}
@media (max-width: 768px) {
  .form-wrapper {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .contact-form {
    width: 100%;
    padding: 30px;
  }
  .contact-form__title {
    font-size: 25px;
  }
}
/* //////////////////  FORM  //////////////////// */

/* //////////////////  Pop-up  //////////////////// */

.popup-fade-order:before {
  display: none;
  content: "";
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 1000;
}
.popup-fade-open:before {
  display: block;
}
.open-modal {
  overflow: hidden;
  margin-right: 17px;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}
@-moz-keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}
@-o-keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
  50% {
    transform: translatey(-30px);
    transform: translatex(20px);
  }
  100% {
    transform: translatey(0px);
    transform: translatex(0px);
  }
}

.pop-up-order {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1001;
  width: 100%;
  border-radius: 25px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .pop-up-order {
    width: calc(100% - 40px);
    max-height: 90%;
    max-width: 440px;
  }
}
@media (max-width: 767px) {
  .pop-up-order {
    max-height: 90%;
    width: 90%;
    border-radius: 25px;
  }
}
.pop-up-order > .pop-up__wrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--offwhite);
  padding: 30px;
}
.pop-up-order .close-form {
  position: absolute;
  top: 17px;
  right: 17px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 5px;
}
.pop-up-order .close-form:hover {
  cursor: pointer;
  background-color: var(--blue);
}
.pop-up-order.open {
  visibility: visible;
  opacity: 1;
}
.popup__heading-city {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 30px;
}
.popup__heading-city h3 {
  font-family: "GT Eesti Pro Display", sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: var(--black-4);
}
.success-send {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 25px;
  right: 25px;
  margin: auto;
  width: 415px;
  height: 150px;
  padding: 25px;
  border-radius: 50px;
  background-color: var(--offwhite);
  text-align: center;
  box-shadow: 0 0 80px 20px #1424245e;
  z-index: 999;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.success-send-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.success-send h4 {
  font-family: "GT Eesti Pro Display", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--offwhite);
  margin-bottom: 10px;
}
.success-send p {
  font-family: "GT Eesti Pro Display", sans-serif;
  color: var(--offwhite);
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .success-send {
    width: auto;
  }
  .open-modal {
    margin-right: 0;
  }
  .pop-up-order > .pop-up__wrapper {
    padding: 30px 0 0 0;
  }
}
/* //////////////////  Pop-up  //////////////////// */
