/* общие стили форм */

.promoform {
  display: block;
  position: relative;
}

.promoform * {
  font-family: "Open Sans", sans-serif;
}

.promoform__form {
  position: relative;
  max-width: 490px;
  margin: 0 auto;
  padding: 0 10px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.promoform__form-inner {
  position: relative;
}

.promoform__form-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  color: #000;
  margin: 0;
  margin-bottom: 35px;
}

.promoform__form-row {
  padding-bottom: 20px;
}

.promoform__input {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  border: 1px solid rgba(100,100,100,0.3);
  font-size: 20px;
  font-weight: 400;
  line-height: 44px;
  color: #000;
  padding: 0 22px;
  margin-right: 16px;
  background-color: #fff;
}

.promoform__city-select {
  min-height: 53px;
  border: 1px solid rgba(100,100,100,0.3);
  font-size: 20px;
  font-weight: 300;
  line-height: 14px;
  color: #000;
  padding: 10px 22px;
  background-color: #fff;
}

.promoform__input.invalid {
  border: 1px solid red;
}

.promoform__input.promoform__input--name {
  max-width: 300px;
  background: white;
}

.promoform__input.promoform__input--tel {
  max-width: 300px;
  background: white;
}

.promoform__input.promoform__input--work {
  line-height: 1.2;
  padding: 12px 22px;
  min-height: 100px;
}

.promoform__form-btn {background-color:#99c76c;color:#ffffff;background-image:-webkit-linear-gradient(top, #99c76c, #99c76c);background-image:linear-gradient(to bottom, #99c76c, #99c76c);border-color:rgba(0, 0, 0, 0.05);border-bottom-color:rgba(0, 0, 0, 0.05);text-shadow:0 0px 0 rgba(0, 0, 0, 0.05);}

.promoform__form-btn:hover {
  opacity: 0.9;
}

.promoform__form-btn:disabled,
.promoform__form-btn:disabled:hover {
  opacity: 0.6;
  filter: grayscale(0.5);
  transition: all 0.2s ease;
}

.promoform__person {
  display: inline-block;
  vertical-align: top;
  width: auto;
  color: #687d86;
  font-size: 13px;
  font-style: normal;
  line-height: 30px;
  padding-top: 45px;
}

.promoform__btn-wrapper {
  padding-top: 20px;
}

.promoform__preloader-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.promoform__preloader {
  text-align: center;
  font-size: 35px;
  color: #444444;
}

.promoform__answer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
}

.promoform__answer-title {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.promoform__answer-content {}

.js-promoform-answer {
  display: none;
}

.js-promoform-preloader {
  display: none;
}

.js-promoform-content {
  opacity: 1;
  transition: all 0.2s ease;
  filter: none;
}

.is-promoform-sending .js-promoform-content {
  opacity: 0.2;
  transition: all 0.5s ease;
  filter: blur(2px);
}

.is-promoform-send-ok .js-promoform-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.is-promoform-sending .js-promoform-preloader {
  display: flex;
}

.is-promoform-send-ok .js-promoform-answer {
  display: flex;
}
  
/* стили для формы promoform--0 */

.promoform--0 {
  background:;
  width: 100%;
}

.promoform--0 .promoform__form {
  min-height: 100px;
  padding-top: 8px;
  padding-bottom: 80px;
}

.promoform--0 .promoform__form-btn {min-height:40px;padding:10 15px;line-height:30px;font-size:15px;border-radius:5px;}
      