/* Adjust border radius of the Zero Block container inside popup */
#rec1390097393.t-popup__container {
  border-radius: 30px !important; /* Change value as needed */
  overflow: hidden; /* Keeps inner content rounded */
}

/* Optional: Add a background color to match the rounded style */
#rec1390097393.t-popup__container .t-popup__content {
  background-color: #f5f5f5; /* light grey background */
  border-radius: 30px !important;
}

/* Target the specific popup */
#zeropopupjordan .t-popup__container {
  max-width: 800px;           /* Adjust the width of the popup box */
  margin: 40px auto;          /* Center it with space around */
  border-radius: 30px;        /* Rounded corners */
  overflow: hidden;           /* Keeps content inside the rounded shape */
  background-color: #ffffff;  /* Optional: give popup a clean background */
}

/* Optional: adjust Zero Block inside popup to match rounding */
#zeropopupjordan .t-popup__container .t396__artboard {
  border-radius: 30px;
  overflow: hidden;
}