.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup_open {
  opacity: 1;
  visibility: visible;
}

.popup__content {
  width: 777px;
  max-height: 100%;
  overflow-y: auto;
  padding: 94px 79px 86px 55px;
  border-radius: 10px;
  background: white;
  position: relative;
}

.popup__title {
  padding-bottom: 4px;
  font-size: 45px;
  line-height: 61px;
  text-align: center;
}

.popup__text {
  padding-bottom: 60px;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}

.pupop__input {
  margin-bottom: 50px;
  padding-bottom: 9px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-size: 25px;
  line-height: 34px;
  border: none;
  border-bottom: 1px solid rgb(0, 0, 0);
}

.pupop__input:focus {
  outline: none;
}

.pupop__input::placeholder {
  opacity: 0.5;
}

.popup__btn {
  margin-top: 80px;
  display: block;
  width: 100%;
  height: 67px;
  border-radius: 5px;
  border: none;
  background: rgb(173, 24, 24);
  cursor: pointer;
  font-size: 20px;
  line-height: 67px;
  color: rgb(255, 255, 255);
  font-family: "Manrope", sans-serif;
}

.popup__close-btn {
  position: absolute;
  top: 32px;
  right: 34px;
  background-image: url(../resources/cross.png);
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .popup__content {
    padding: 80px 16px;
  }

  .popup__title {
    padding-bottom: 11px;
    font-size: 25px;
    line-height: 34px;
  }

  .popup__text {
    padding-bottom: 70px;
    font-size: 14px;
    line-height: 19px;
  }

  .pupop__input {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 25px;
  }

  .popup__btn {
    margin-top: 60px;
    font-size: 20px;
  }

  .popup__close-btn {
    top: 46px;
    right: 35px;
    background-image: url(../resources/cross\ mobile.png);
    width: 30px;
    height: 30px;
  }
}
