.popup {
  padding-top: 170px;
  position: fixed;
  z-index: 3000;
  inset: 0;
  overflow: auto;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  max-width: 1920px;
  margin: 0 auto;
}

.popup_ratatui {
  background: url('ratatui.jpg') center center / cover no-repeat;
}
.popup_meatballs {
  background: url('meatballs.jpg') center center / cover no-repeat;
}
.popup_onionsoup {
  background: url('onionsoup.jpg') center center / cover no-repeat;
}
.popup_cherrypie {
  background: url('cherrypie.jpg') center center / cover no-repeat;
}
.popup > .container {
  height: 100%;
}
.popup__content {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.popup__success {
  padding: 47px 63px;
  background-color: #FFFFFF;
  color: #131212;
  width: max-content;

  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 48px */
  text-transform: uppercase;
}
.popup__body {
  padding: 44px 63px 80px;
  max-width: 710px;
  background-color: #131212;
  color: #FFFFFF;
}
.popup__title {
  margin-bottom: 40px;

  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
  text-transform: uppercase;
}
.popup__list {
  margin-bottom: 80px;
  padding-left: 32px;

  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 28.8px */
}
.popup__list > li {
  list-style-type: decimal;
}
.popup__button {
  font-family: 'YS Text', 'Arial', sans-serif;
  cursor: pointer;
  padding: 12px 16px;
  min-width: 224px;
  border-radius: 4px;
  background: #FFF;
  border: none;

  color: #091624;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: 0.3px;
}



.popup-error {
  padding-top: 170px;
  position: fixed;
  z-index: 3000;
  inset: 0;
  overflow: auto;

  color: #FFFFFF;
  background: rgba(206, 14, 45, 0.80);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  max-width: 1920px;
  margin: 0 auto;
}
.popup-error__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.popup-error__title {
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
  text-transform: uppercase;
}
.popup-error__description {
  margin: 40px 0 80px;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 28px */
  text-transform: uppercase;
}
.popup-error .popup__button {
  color: #CE0E2D;
}

.popup_visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stack {
  display: grid;
  padding: 0;
}
.stack > * {
  grid-area: 1 / 1;
}
.stack .popup__content {
  padding-top: 170px;
}
.stack__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 965px) {
  .popup {
    padding-top: 0;
  }
  .stack .popup__content {
    padding-top: 0;
  }
  .popup__success, .popup__body {
    padding: 28px 38px;
    width: 100%;
    max-width: unset;
  }
  .popup__success {
    font-size: 28px;
  }
  .popup__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .popup__list {
    font-size: 14px;
    margin-bottom: 50px;
    padding-left: 18px;
  }
  .popup__button {
    padding: 9px 16px;
    max-width: 304px;
    width: 100%;
    font-size: 10px;
  }
}
