.subscribe-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.4941176471);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1100;
}
.subscribe-popup.active {
  opacity: 1;
  visibility: visible;
}

.subscribe-popup__block {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  position: relative;
  margin-top: auto;
  /*  height: 200px; */
  padding: 0 0 20px 0;
  background-color: var(--white);
}

.subscribe-popup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
  background-color: var(--bg-highlight);
  height: 44px;
  border-bottom: 1px solid var(--bg-border);
}

.subscribe-popup__text {
  font-size: 14px;
  line-height: 120%;
  margin-bottom: 24px;
  padding: 0 16px;
}

.subscribe-popup__btn {
  margin: 0 16px;
  height: 44px;
  width: calc(100% - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 120%;
  background-color: var(--action-primary);
  color: var(--white);
}

.subscribe-popup__close {
  position: absolute;
  left: 16px;
  cursor: pointer;
  top: 10px;
}