.Popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  transition: visibility 0s linear 0.5s, opacity 0.5s linear;
  opacity: 0;
  visibility: hidden;
  color: #3C3C3C;
}
.PopupState {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.PopupState:checked + .Popup,
.Popup.Popup_open {
  transition-delay:0s;
  opacity: 1;
  visibility: visible;
}
.Popup_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.PopupState:checked + .Popup .Popup_wrap {
  max-height: 600px;
  opacity: 1;
  padding: 24px 10px 30px 19px;
}
.Popup_wrap {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  /* top: 50%; */
  top: 100px;
  /* transform: translateY(-50%); */
  width: 780px;
  max-width: 100%;
  padding: 2rem;
  border-radius: 5px;
  background: #fff;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  text-align: center;
  transition: all .5s;
}
.Popup_close {
  position: absolute;
  top: 20px;
  right: 23px;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
  color: #626262;
}

.Popup_close .SvgIco {
  width: 24px;
}

.main_area {
  transition: all 0.5s ease-out;
}
.PopupState:checked ~ .main_area,
.main_area.Popup_open {
  filter: blur(6px);
}

.Popup_title {
  margin-bottom: 2.56em;
  font-size: 25px;
  line-height: normal;
}
.Popup_text {
  margin-bottom: 1.62em;
  font-size: 22px;
  line-height: 1.19;
}
.Popup_messengers {
  margin-bottom: 3.8em;
}
.Popup_viber {
  margin-bottom: 1.947em;
  margin-left: -12px;
}
.Popup_closeLabel {
  font-size: 18px;
  opacity: 0.59;
  cursor: pointer;
}

@media (max-width: 768px) {
  .PopupState:checked + .Popup .Popup_wrap {
    padding: 20px 10px 25px;
  }
  .Popup_title {
    font-size: 21px;
  }
  .Popup_text {
    font-size: 18px;
  }
  .Popup_viber {
    margin-left: 0;
  }
  .Popup_closeLabel {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .Popup_close {
    top: 14px;
    right: 10px;
  }
  .Popup_closeLabel {
    font-size: 14px;
  }
  .Popup_close .SvgIco {
    width: 20px;
  }
  .Popup_title {
    margin-bottom: 1.9em;
    font-size: 19px;
  }
  .Popup_text {
    margin-bottom: 1.1em;
    font-size: 16px;
  }
  .Popup_messengers {
    margin-bottom: 3.4em;
  }
  .Popup_viber {
    margin-bottom: 1.247em;
  }
  .PopupState:checked + .Popup .Popup_wrap {
    max-height: 800px;
    padding: 15px 10px 20px;
  }
}