.popup-h {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
  height: 100vh
}

.popup-h__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, .96); */
  backdrop-filter: blur(8px);
  z-index: 1
}

.popup-h__body {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 400px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  z-index: 2;
  padding: 35px 20px
}

@media (max-width:991px) {
  .popup-h__body {
    padding: 25px 15px
  }
}

@media (max-width:450px) {
  .popup-h__body {
    width: 95%;
    padding: 20px 10px
  }
}

.popup-h__form {
  width: 100%
}

.popup-h__form input {
  position: absolute;
  top: 0;
  left: -5000px
}

.popup-h__text {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.04;
  text-align: center;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 30px
}

@media (max-width:991px) {
  .popup-h__text {
    font-size: 16px;
    margin-bottom: 25px
  }
}

@media (max-width:600px) {
  .popup-h__text {
    font-size: 14px;
    margin-bottom: 20px
  }
}

.popup-h__form-bottom {
  text-align: center
}

.popup-h__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 169px;
  min-height: 40px;
  background-color:rgb(22, 202, 94);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 19px;
  line-height: 1;
  text-align: center;
  letter-spacing: -.025em;
  color: #fff;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out
}

@media (any-hover:hover) {
  .popup-h__button:hover {
    opacity: .6
  }
}

.popup-h__button:active {
  opacity: .2;
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

@media (max-width:991px) {
  .popup-h__button {
    min-width: 149px;
    font-size: 17px
  }
}

@media (max-width:600px) {
  .popup-h__button {
    font-size: 14px;
    min-width: 169px;
    min-height: 30px
  }
}