.cpln-leavenotice {
        display: none;
      }

      .cpln-leavenotice.cpln-active {
        display: block;
      }

      .cpln-position {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        overflow: auto;
      }

      .cpln-overlay {
        background-color: rgb(0 0 0 / 70%);
        position: absolute;
        width: 100%;
        height: 100%;
      }

      .cpln-tb {
        display: table;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
      }

      .cpln-td {
        display: table-cell;
        vertical-align: middle;
      }

      .cpln-content {
        max-width: 536px;
        margin: 0 auto;
        background-color: #fff;
        padding: 30px;
        text-align: center;
        line-height: 1.5;
        font-size: 13px;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .cpln-content h2 {
        font-family: "Rubik";
        margin: 0 0 1rem;
        font-size: 24px;
        line-height: 28px;
      }

      .cpln-content p {
        font-family: "Rubik";
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
      }

      .cpln-content p:last-child {
        margin-bottom: 0;
      }

      .cpln-redirect-box {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        margin-top: 30px;
        gap: 25px;
      }

      .cpln-redirect-link {
        display: flex;
        color: #ffffff;
        background-color: #43354b;
        border-radius: 24px;
      }

      .cpln-cancel,
      .cpln-redirect-url {
        font-family: "Rubik";
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        border: 1px solid #43354b;
        padding: 10px 30px;
        color: #fff;
        border-radius: 24px;
        margin: 0 auto;
      }

      .cpln-cancel {
        color: #000000;
        width: 50%;
      }

      .cpln-redirect-box__content {
        width: 50%;
      }

      @media screen and (max-width: 520px) {
        .cpln-content {
          max-width: 400px;
        }
        .cpln-redirect-box {
          flex-direction: column;
        }
        .cpln-redirect-box__content {
          margin-bottom: 10px;
        }
        .cpln-redirect-box {
          gap: 0;
        }
        .cpln-cancel,
        .cpln-redirect-box__content {
          width: 100%;
        }
      }

      @media screen and (max-width: 420px) {
        .cpln-content {
          max-width: 97vw;
        }
      }