.cgm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Sørg for at popup'en vises øverst */
}

.cgm-popup {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    width: 90%;
    text-align: center; /* Centrer indholdet */
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px; /* Gør indholdet mindre */
}
.cgm-popup h2 {
	font-size:20px;
}	
@media only screen and (max-width: 766px) {
	.cgm-popup {
    max-width: 500px;
}
}
.cgm-popup-close {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px; /* Gør knappen mindre */
}
