<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;style&gt;
.ghosted {
    pointer-events: none;
    opacity: 0.1; /* Transparenz einstellen */
}
.error-text {
    font-weight: bold;
    color: red;
}


.popup {
    display: none;
    position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    max-width: 40%; /* Maximale Breite auf 40% des Bildschirms festlegen */
    width: 90%; /* Breite auf 90% des Bildschirms festlegen */
    max-height: 90%; /* Maximale HÃ¶he auf 90% des Bildschirms festlegen */
    overflow-y: auto;
    font-size:14px !important;
    line-height:20px;
}

.popup p{
	font-size:14px !important;
	line-height:20px;
}
@media (max-width: 768px) { /* FÃ¼r Bildschirme mit einer Breite von 768px oder weniger */
    .popup {
        max-width: 90%; /* Maximale Breite auf 90% des Bildschirms festlegen */
        max-height: 65%; /* Maximale HÃ¶he auf 65% des Bildschirms festlegen */
        top: 40%; /* Abstand von Oben 40% */
    }
}

.popup-content {
    text-align: left;
    font-size:14px !important;
    line-height:20px;
}

.popup-content p{
	 font-size:14px !important;
	  	line-height:20px;
}	
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.popup h2 {
    margin-top: 0;
    color: black;
}

.popup p {
    margin-bottom: 10px;
    color: black;
}


.popup button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.popup button:hover {
    background-color: #45a049;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 5%; /* Abstand zum unteren Bildschirmrand auf 5% des Bildschirms festlegen */
    left: 15%; /* Abstand zum linken Bildschirmrand auf 5% des Bildschirms festlegen */
    right: 15%; /* Abstand zum rechten Bildschirmrand auf 5% des Bildschirms festlegen */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000; /* Z-Index anpassen, falls nÃ¶tig */
}

@media (max-width: 768px) { /* FÃ¼r Bildschirme mit einer Breite von 768px oder weniger */
    .cookie-banner {
        left: 5%;
		right: 5%;
    }
}

.cookie-text {
    margin: 0;
    font-size: 16px;
    text-align: center;
    color:white;
}

.cookie-buttons {
    text-align: center;
}

.cookie-buttons button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-buttons button:hover {
    background-color: #45a049;
}

.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    font-size: 18px;
    text-align: center;
    z-index: 10;
	border-radius: 15px;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    font-size: 22px;
    text-align: center;
    z-index: 10;
	border-radius: 15px;
}
&lt;/style&gt;</pre></body></html>