/* -Einstellungen für die Integration von Gooogle Maps ----------------------------------------------------------------*/
/* Link / Karte wird erst geladen, wenn auf Bild geklickt wird --------------------------------------------------------*/

.fa-info-circle.i-maps{
	padding-top: 8px;
	padding-right: 12px;
	float:left;
	font-size: 4em;
}
.fa-info-circle.i-maps:hover{
    color: rgba(255, 0, 0, 0.50);
}

/* Google Maps Anzeige in Webseite mit Overlay */
.anzeigebereich {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius, 4px);
    background-image: url(../images/page/google-maps-overlay.jpg);
    background-size: cover;
    overflow: hidden;
}  

#map {
    width: 100%;
    height: 100%;
    transition: all 3.5s ease-in-out;
    display: none;
    border-color: transparent;
}  

#google-overlay {
    position: absolute;
    top: 0;
    left: 0;
	display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    color: white;
    margin: 0;  
    background-color: rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(var(--blur-effekt));
    backdrop-filter: blur(var(--blur-effekt));
    opacity: 1;
    transition: all 3.5s ease-in-out;
    border-radius: var(--border-radius, 4px);
}

.map-hinweis {
	width: auto;
	border: 5px solid rgba(255, 255, 255, 0.43);
	padding: 30px 30px;
	text-align: center;
    border-radius: var(--border-radius, 4px);
    margin-left:  10%;
    margin-right:  10%;
}

.map-hinweis:hover {
	border-color: rgba(255, 0, 0, 0.36);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}



