/* Basisstijl voor de popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Verborgen standaard */
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.popup-content {
    background-color: white;
    padding: 20px;
    display: flex;
    max-width: 600px;
	  border-radius: 8px;
    width: 100%;
    position: relative;
	font-family: 'informapro';
	font-weight: 300;
	font-size: 18px;
}

.popup-content td{
	padding-top: 12px;
	padding-bottom: 12px;
}

.popup-content td:nth-child(2) {
    font-weight: bold; /* Maakt de tekst in de tweede kolom bold */
}


.popup-left{
   padding-top: 50px;
}

.popup-left img {
    max-width: 200px;
    margin-right: 20px;
}

.popup-right h2 {
    margin-top: 0;
	font-family: 'new-order';
}

.popup-right a {
	background-color: #7FAD62;
	color: #fff;
	padding: 8px 24px; 
	font-family: 'informapro';
	margin-top: 8px;
	margin-bottom: 8px;
	border-radius: 20px;
}

  /* Extra ruimte voor de laatste rij */
        .popup-right table tr:last-child td {
			 padding-top: 20px;
            padding-bottom: 20px; /* Verhoog de padding aan de onderkant van de laatste rij */
        }

.popup-right svg{
	    vertical-align: middle;
}
.popup.hidden {
    visibility: hidden;
    opacity: 0;
}

.popup.show {
    visibility: visible;
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    cursor: pointer;
}
