#modal_bargain .everything_wrong_end.end-content {
  grid-template-areas:
  "info product"
  "bottom  product"
  "bottom  product";
}


#modal_bargain .everything_wrong_end .info {
  max-width: 470px;
  max-height: 200px;
  text-align: start;
}

#modal_bargain .everything_wrong_end .info h1 {
  margin: 0;
  font-family: 'Cy Grotesk Key';
  text-align: start;
  line-height: 44px;
}

#modal_bargain .modal-content .everything_wrong_end.end-content .bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#modal_bargain .everything_wrong_end .bottom p {
  max-width: 320px;
  margin: 0;
}

#modal_bargain .everything_wrong_end .bottom .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 240px;
  padding: 24px;
  border: 2px solid var(--shade);
  border-radius: 12px;
  font-size: 18px;
  color: var(--red);
  font-weight: 700;
}

#modal_bargain .everything_wrong_end .bottom .btn:hover {
  opacity: .8;
}

#modal_bargain .everything_wrong_end .bottom .btn:focus {
  outline: 2px solid var(--shade);
}

@media (max-width: 991px) {
  #modal_bargain .everything_wrong_end .bottom {
    flex-direction: row;
    align-items: end;
    gap: 24px;
  }
}

@media (max-width: 650px) {
  #modal_bargain .everything_wrong_end .info h1 {
    font-size: 28px;
    line-height: 30px;
  }

  #modal_bargain .everything_wrong_end .bottom {
    flex-wrap: wrap;
    gap: 24px;
  }

  #modal_bargain .everything_wrong_end .bottom p {
    font-size: 14px;
    line-height: 21px;
  }

  #modal_bargain .everything_wrong_end .bottom .btn {
    max-width: unset !important;
    justify-content: center;
    width: 100%;
    max-height: 64px;
    padding: 16px;
    font-size: 14px;
  }
}