#popupDialog {
                display: none;
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                padding: 20px;
                background-color: #fff;
                border: 1px solid #ccc;
                box-shadow: 0 4px 8px
                    rgba(0, 0, 0, 0.1);
                z-index: 10000;
	    max-width: 80%;
    max-height: 80%;
    overflow: auto;
            }

            #overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.8);
                z-index: 9999;
            }

#popupDialog button{
	      position: absolute;
    top: 0;
    right: 0;
	border: none;
	background: #5dd0f9;
	color: white;
	font-family: 'Articulat CF Extra';
	padding: 1%;
}