.exitblock {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
  }

  .exitblock .fon {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: #000;
    opacity: .7;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .exitblock .modaltext {
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    background: #F6FCFF;
    height: 375px;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 60%;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    width: 750px;

  }

  .exitblock .modaltext>img {
    width: calc(750px - 420px);
    object-fit: cover;
  }

  .closeblock {
    cursor: pointer;
    position: absolute;
    line-height: 60px;
    transform: rotate(45deg);
    text-align: center;
    right: -15px;
    top: -20px;
    color: #6a6a6a;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    font-size: 44px;
    padding: 0;
    margin: 0 auto;
    transform: rotate(360deg);
  }

  .closeblock svg {
    transform: scale(0.7);
  }

  .closeblock span {
    height: 29px;
    width: 25px;
    line-height: 22px;
  }

  .closeblock:hover {
    color: #000;
  }

  .content_wrapper {
    text-align: center;
    display: flex;
    padding: 30px 50px;
    width: 420px;
    flex-direction: column;
    justify-content: space-between;
  }

  .content_wrapper img {
    margin-bottom: 30px;
    max-width: 220px;
  }

  .content_wrapper .h2 {
    font-weight: 700;
    font-size: 30px !important;
  }

  .content_wrapper h3 {
    font-weight: 600;
    font-size: 28px !important;
    line-height: 28px !important;
  }

  .content_wrapper h4 {
    font-size: 22px !important;
  }

  .content_wrapper h5 {
    font-size: 18px !important;
  }

  .content_wrapper .coupon_text {
    margin-top: 40px;
    padding: 0 30px;
    color: #4e4e4e;
  }

  @media (max-width: 900px) {
    .exitblock .modaltext>img {
      display: none;
    }

    .exitblock .modaltext {
      width: 80%;
      height: auto;
    }

    .closeblock {
      left: 94%;
      top: -5%;
    }
  }