.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    z-index: 9999;
    -webkit-backdrop-filter: blur(5px);
  }

  .popup-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 64%;
    height: 34%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    position: relative;
  }

  .popup-box h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .popup-box p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .popup-box button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px; /* Add some margin between the buttons */
    flex: 1
  }

  .popup-box h1 {
    margin-bottom: 10px; /* Add some margin between the headings */
  }
  
  .popup-box .button-container {
    display: flex;
    justify-content: center;
  }

  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }

  @media (min-width:643px) {
    .popup-box {
        width: 40% !important;
    }
}

@media (min-width:1080px) {
    .popup-box {
        width: 30% !important;
    }

}

@media (min-width:1280px) {
    .popup-box {
        width: 20% !important;
    }

}
