.sliding-popup {
  /* position: fixed; */
    margin: 2px;
    right: -300px; /* Initially, the popup is off-screen */
    width: 230px;
    /* height: 200px; */
    border-radius: 6px;
    background-color: #51cf40d3;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
  }
  
  .popup-content-body{
    width: 100%;
    color: #fff;
  }


  .sliding-popup.open {
    right: 0; /* Slide the popup into view */
  }
  
  .popup-content {
    padding: 10px;
  }
  
  .close-button {
    display: block;
    background: transparent;
    border-radius: 50%;
    margin-bottom: 10px;
    width: 18px;
    height: 18px;
    color: #fff;
    padding: 0px;
    border: 0.25px solid;
    float: right;
    cursor: pointer;
  }
  
  .popup-container {
    display: grid;
    position: absolute;
    z-index: 15000;
    right: 0;
    bottom: 0;
  }