.popup {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.75);
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;

  display: none;
}

.popup-none {
  display: flex;
}

.popup-conteiner {
  max-width: 388px;
  width: 95%;
  margin: auto;
  padding-left: 29px;
  padding-right: 29px;
  padding-top: 49px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}

.popup-close {
  width: 19px;
  height: 19px;
  background-image: url("../images/form-x.svg");
  position: absolute;
  top: -27px;
  right: -4px;
  border: 0; 
  outline: none; 
  background-color: transparent;
}

.popup-conteint {
  text-align: center;
  margin-bottom: 50px;
}

.popup-conteint-title {
  padding-left: 6px;
  padding-bottom: 35px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #2F2F51;
}

.popup-wrapper {
  display: block;
  text-align: start;
  position: relative;
  margin-bottom: 29px;
}

.popup-inner {
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  line-height: 23px;
  color: #2F2F51;
}