@charset "UTF-8";
.offer__popup {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(43, 46, 56, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  overflow: auto;
  z-index: 999999;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  height: 0;
  pointer-events: none;
  font-family: Roboto, sans-serif;
}
.offer__popup.visible {
  display: flex;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  height: auto;
  pointer-events: auto;
}
.offer__popup-wrapper {
  position: relative;
  display: flex;
  background: #055074;
  max-width: 960px;
  border-radius: 30px;
}
@media (max-width: 1023px) {
  .offer__popup-wrapper {
    margin: 16px;
  }
}
.offer__popup-close {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 50%;
  background: #ffbb45;
}
@media (max-width: 1023px) {
  .offer__popup-close {
    right: 10px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .offer__popup-close {
    top: 0;
    right: 0;
  }
}
.offer__popup-close:before {
  font-family: Roboto, sans-serif;
  display: block;
  content: "×";
  text-align: center;
  line-height: 1;
  font-size: 26px;
  color: #fff;
}
.offer__popup-image {
  width: 50%;
}
.offer__popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 1023px) {
  .offer__popup-image {
    display: none;
  }
}
.offer__popup-body {
  padding: 40px 60px;
  width: 50%;
  border-radius: 0 30px 30px 0;
}
@media (max-width: 1023px) {
  .offer__popup-body {
    padding: 20px 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .offer__popup-body {
    padding: 20px;
  }
}
.offer__popup-body form {
  padding-top: 20px;
}
.offer__popup-body form .tpl-field {
  margin-bottom: 16px;
}
.offer__popup-body form .tpl-field.tpl-field-button {
  text-align: center;
  margin-bottom: 0;
}
.offer__popup-body .tpl-anketa-success-note {
  font-size: 22px;
  text-align: center;
}
.offer__popup-title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}
@media (max-width: 767px) {
  .offer__popup-title {
    font-size: 24px;
  }
}
.offer__popup-subtitle {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}
.offer__popup-text {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}
.offer__popup input, .offer__popup textarea {
  border-radius: 30px;
  background: #fff;
  border: none;
  outline: none;
  padding: 10px 20px;
  width: 100%;
  min-height: 50px;
}
.offer__popup .tpl-form-button {
  padding: 18px 30px;
  background: #ffbb45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 8px 10px 0px rgba(255, 187, 69, 0.44);
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  transition: 300ms ease all;
  font-weight: 900;
  border: none;
  outline: none;
  border-radius: 50px;
}
.offer__popup .tpl-form-button:hover {
  box-shadow: 5px 8px 30px 0px rgba(255, 187, 69, 0.84);
}
