.popup-bg {
    color: green;
    background-color: lightgrey;
    position: absolute;
    z-index: 999999999999999999;
    width: 100%;
    height: 100%;
    top: 0;
}

.popupShow {
color: blue;
background: white;
justify-content: center;
width:30% ;
}
.popupModal {
    position: fixed; /* Stay in place */
     z-index: 999999999999999999;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  .popupModalPosition {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .popupModal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }

  .popupModal-content-custom {
    margin: unset;
    padding: unset;
    width: max-content;
    max-width: 80%;
    overflow: hidden;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 28px auto 28px;
    grid-template-rows: 28px auto 28px;
    grid-template-areas:
    '. . closeBtn'
    '. content .'
    '. . .';
  }

  .contentPopup {
    grid-area: content;
  }

  .contentPopup *{
    max-width: 100%;
  }

  .contentPopup p{
    margin: unset;
    display: flex;
    flex-wrap: wrap;
  }

  .popupModal-content-custom .closePopup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .closePopup {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    grid-area: closeBtn;
  }

  .closePopup:hover,  .closePopup:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

@media (max-width: 550px) {
  .popupModalPosition {
    display: none;
  }
}