  .bounce-back-popup {
    background-color: white;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 80vw;
    max-width: var(--bounce-back__content-width);
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .bounce-back-popup-content {
    flex-grow: 1;
  }
  
  .bounce-back-popup-close {
    margin-bottom: 10px;
    margin-right: 15px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    align-self: flex-end;
    position: absolute;
    transition: transform .2s ease-in-out;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
  
  .bounce-back-popup-close svg {
    width: 20px;
    height: 20px;
  }
  
  .bounce-back-popup-close:hover {
    transform: scale(1.1);
  }
  
  .show-bounce-back-popup {
    display: flex !important;
  }