.notePopup {
    background: rgba(0, 0, 0, 0.839);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .notePopup__block {
    position: relative;
    max-width: 760px;
    background: #161616;
    background-size: 100% 100%;
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 10px;
    max-height: 70vh;
    overflow: auto;
  }
  .notePopup__block-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    cursor: pointer;
  }
  .notePopup__block-close svg {
    fill: #fff;
  }
  .notePopup__dm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* min-height: 30vh; */
    padding: 20px 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #fff;
    text-align: center;
  }

  .notePopup__dm p{
    margin: 40px 0 10px;
  }
  @media (min-width: 996px) {
    .notePopup__dm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        /* min-height: 30vh; */
        padding: 70px 40px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        color: #fff;
        text-align: center;
      }
      .notePopup__dm p{
        margin: 10px;
      }
  }

  .notePopup__dm a {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to left top, #6c186e, #1436a8);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-align: center;
    margin: 5px;
  }