div[class^="popup-contents-"] {
  display: none !important;
}
.popup div[class^="popup-contents-"] {
  display: block !important;
}

.popup-banner {
  width: 100%;
  height: 100%;
  position: relative;
}
.popup-banner > :is(picture, img) {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.popup-banner :is(picture, img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popup-banner__contants {
  z-index: 1;
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: calc(100% - 100px);

  @media screen and (max-width: 991px) {
    left: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }
}
.popup-banner__logo {
  width: 255px;

  @media screen and (max-width: 1200px) {
    width: 136px;
  }
}
.popup-banner__logo path {
  fill: var(--primary-accent);
}
.popup-banner__form {
  margin-top: 20px;

  @media screen and (max-width: 991px) {
    margin-top: 10px;
  }
}