
.scrollmenu{
	display:block;
    position:relative;
	height:auto;
	width:100%;
	overflow:hidden;
}
.scrollSubmenu{
	display:block;
	margin-bottom:20px;
	height:0;
	width:100%;
	background: rgba(155, 155, 155, 0.9);
    transition: height 0.3s ease, padding 0.3s ease;
}
.scrollSubmenu.active {
	height:auto;
	
}
.container {
    overflow: auto;
    white-space: nowrap; 
    width:100%;
    height:auto;
   
    background-color: #ececec;
    
}
.container a{
	display: inline-block;
	text-decoration: none;
	border:1px solid#dfdfdf;
	padding: 20px;
	font-size: 23px;
	align-items:center;
    cursor: pointer;
    color: #0084c7;

}
.container a img{
    width: auto;
    height: 25px;
    vertical-align: middle;
    margin-left: 8px;
}
#canvasHtmlCont .header{
    
    padding:20px;
}
.header img{
    margin-left:8px;
    width: auto;
    height: 60px;
}
.container a:hover {
    color: #000;
}
#canvasHtmlCont {
    background-color: #00000052;
    
}


.kontaktBtn{
    position:absolute;
    top: 0px;
    right: 5%;
    transform: translateX(-60%);
    width: 100px;
    height: 100px;
    background-image: url("../img/kontakt_btn.png");
    z-index: 999;
    background-size: contain;
    background-color:transparent;
    background-repeat: no-repeat;
    border:none;
}
.kontaktBtn img{
    width: auto;
    height: 80px;
    vertical-align: middle;
    margin-left: 5px;
}
.kontaktBtn:hover{
    transform: translateX(-60%) scale(1.1);
    transition: transform 0.3s ease;
    background-color:transparent;
}


.contactWindow{
    position:absolute;
    bottom:150px;
    left:50%;
    transform: translate(-50%);
    width:auto;
    height:auto;
    background-color:#fff;
    border:0px solid#000;
    z-index:10000;
    padding:20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display:none;
    opacity:0;
    transition: top 0.5s ease, opacity 0.5s ease;
}
.contactItem{
    position:relative;
    width:100%;
    height:auto;
    border:1px solid #0195df;
    margin-bottom:10px;
    padding: 20px 70px 30px 20px;
    box-sizing:border-box;
}
.contactItem img{
    position:absolute;
    top:10px;
    right:0px;
    width:40px;
    height:40px;
}
.contactWindow.blue{
    background-color: #0084c7;
    color: #fff;
}
.contactWindow.blue h2, .contactWindow.blue a, .contactWindow.blue p{
    color: #fff;

}
.contactWindow.active{
opacity: 1;
display:block;

}

.closebtn{
	position:absolute;
	top:5px;
	right:2px;
	width:50px;
	height:auto;
    cursor: pointer; /* Handcursor */
	transition: transform 0.3s ease;
    font-size: 35px;
}
.closebtn:hover {
    transform: scale(1.1); /* Vergrößern bei Hover */
    
}
.closebtn img{
	width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den verfügbaren Platz proportional */
}