/*
@media only screen and (max-width: 768px){
*/
	.post-review-popup-overlay {
	    display:none;
	    position: fixed!important; /* fixed it */
	    top: 6vh; /* moves it to the top */
	    width: 100%; /* makes it fullwidth */
	    height: 80%; /* makes it full height of the screen */
	    z-index: -1; /* moves the section behind all the rest so it is not shown */
	    justify-content: center; /* centers the row in the middle */
	    align-items: center;  /* centers the row in the middle */
		  opacity: 0; /* hides the overlay */
		  overflow: hidden;
		  transition: opacity 0.4s ease-in-out; /* fades it in */
		  -moz-transition: opacity 0.4s ease-in-out;
		  -webkit-transition: opacity 0.4s ease-in-out;
	}

	.post-review-popup-content {
	    background: #fff;
	 /*   padding: 20px; */
	 /*   border-radius: 5px;*/
	    position: relative!important;
	    max-height: 100%!important;  /* Adjust as needed */
	    max-width: 100%!important;   /* Adjust as needed */
	    overflow-y: auto!important; /* Enables vertical scrollbar */
	}

	.close-post-review-popup {
	    cursor: pointer!important;
	    font-size: 24px!important;
	}
/*
  }
*/

/* CSS for overlay when shown */
.post-review-popup-overlay.show {
    display: flex; /* flex as this allows us to center the row */
    opacity: 1; /* shows the overlay */
    z-index: 99999; /* moves the overlay on top of all the other sections */
}

