.uteho-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10500;
  font-family: "Ubuntu", sans-serif;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.uteho-popup.is-open {
  display: block;
}
.uteho-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}
.uteho-popup__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 40px auto;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: utehoPopupIn 0.25s ease-out;
}
@keyframes utehoPopupIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.uteho-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  padding: 0;
  line-height: 30px;
  font-size: 26px;
  color: #888;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease-out;
}
.uteho-popup__close:hover {
  color: #212121;
}
.uteho-popup__body {
  display: flex;
  align-items: stretch;
}
.uteho-popup__content {
  flex: 1 1 auto;
  min-width: 0;
  padding: 35px 30px;
}
.uteho-popup__image {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 20px 0;
}
.uteho-popup__image img {
  max-width: 100%;
  height: auto;
}
.uteho-popup__title {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}
.uteho-popup__title-1 {
  display: block;
  color: #212121;
}
.uteho-popup__title-2 {
  display: block;
  color: #4da94b;
}
.uteho-popup__text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b6b6b;
}
.uteho-popup__text > *:first-child {
  margin-top: 0;
}
.uteho-popup__text > *:last-child {
  margin-bottom: 0;
}
.uteho-popup__text p {
  margin: 0 0 10px;
}
.uteho-popup__text ul,
.uteho-popup__text ol {
  margin: 0 0 10px;
  padding-left: 20px;
}
.uteho-popup__text li {
  margin-bottom: 4px;
}
.uteho-popup__text h1,
.uteho-popup__text h2,
.uteho-popup__text h3,
.uteho-popup__text h4 {
  margin: 0 0 8px;
  color: #212121;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}
.uteho-popup__text b,
.uteho-popup__text strong {
  color: #212121;
}
.uteho-popup__text a {
  color: #4da94b;
  text-decoration: underline;
}
.uteho-popup__text img {
  max-width: 100%;
  height: auto;
}
.uteho-popup__text table {
  width: 100%;
  border-collapse: collapse;
}
.uteho-popup__text td,
.uteho-popup__text th {
  padding: 4px 6px;
  border: 1px solid #e5e5e5;
  text-align: left;
}
.uteho-popup__form {
  padding: 15px;
  background: #f6f6f6;
}
.uteho-popup__collect {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.uteho-popup__bell {
  flex: 0 0 auto;
  margin-right: 10px;
  line-height: 0;
}
.uteho-popup__collect-text {
  font-size: 14px;
  line-height: 1.4;
  color: #212121;
}
.uteho-popup__row {
  display: flex;
  align-items: stretch;
  margin: 0;
}
.uteho-popup__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 10px;
  font-size: 14px;
  color: #212121;
  background: #fff;
  border: 1px solid #97a9af;
  border-right: none;
}
.uteho-popup__input.has-error {
  border-color: #d9534f;
}
.uteho-popup__btn {
  flex: 0 0 auto;
  height: 42px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #4da94b;
  border: 1px solid #4da94b;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.uteho-popup__btn:hover {
  background: #429040;
  border-color: #429040;
}
.uteho-popup__btn[disabled] {
  opacity: 0.6;
  cursor: default;
}
.uteho-popup__error {
  display: none;
  margin-top: 8px;
  font-size: 12px;
  color: #d9534f;
}
.uteho-popup__error.is-visible {
  display: block;
}
.uteho-popup__note {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.4;
  color: #928c8c;
}
.uteho-popup__note a {
  color: #4da94b;
  text-decoration: underline;
}
.uteho-popup__success {
  display: none;
  padding: 20px 15px;
  font-size: 15px;
  line-height: 1.4;
  color: #212121;
  background: #eef7ee;
  border: 1px solid #4da94b;
}
.uteho-popup__success.is-visible {
  display: block;
}
body.uteho-popup-open {
  overflow: hidden;
}

.uteho-popup__actions {
  margin-top: 5px;
}
.uteho-popup__btn--wide {
  min-width: 180px;
}

@media (max-width: 991px) {
  .uteho-popup__dialog {
    max-width: 90%;
  }
  .uteho-popup__content {
    padding: 30px 20px;
  }
  .uteho-popup__image {
    flex: 0 0 200px;
  }
  .uteho-popup__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .uteho-popup__dialog {
    max-width: 100%;
    margin: 0;
    margin-top: 15%;
  }
  .uteho-popup__body {
    flex-direction: column-reverse;
  }
  .uteho-popup__content {
    padding: 20px 15px 25px;
  }
  .uteho-popup__image {
    flex: 0 0 auto;
    padding: 25px 15px 0;
  }
  .uteho-popup__image img {
    max-height: 180px;
    width: auto;
  }
  .uteho-popup__title {
    font-size: 22px;
  }
  .uteho-popup__row {
    display: block;
  }
  .uteho-popup__input {
    width: 100%;
    border-right: 1px solid #97a9af;
  }
  .uteho-popup__btn {
    width: 100%;
    margin-top: 10px;
  }
  .uteho-popup__btn--wide {
    min-width: 0;
  }
}
