/* Infobubble */

/*
.info-container {
position: fixed;
bottom:50px;
right: 30px;
left: auto;
z-index: 50;
}
*/

.infobubble {
position: fixed;
bottom:80px;
right: 25px;
left: auto;
z-index: 50;
height: 300px;
width: 300px !important;
border-radius: 100%;
padding: 20px;
background: var(--bg-dark);
  display: flex !important;
  /*transition: transform 1s;*/
  transform-origin: bottom right;
  transform: scale(0.13);
  z-index: 50;
}

.infobubble.active {
	transform: scale(1);
}

.infobubble > .content-text {
display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.infobutton {
position: fixed;
bottom:60px;
right: 25px;
left: auto;
z-index: 100;
width: 50px !important;
}

.infobutton i {
right: -2px;
position: absolute;
top: -48px;
} 

@media(min-width: 1280px){
.ba-slideshow-dots {
display: none !important;
}}


/* Gesamtbreite Webseite */

body { 
max-width:2100px; 
margin: 0 auto !important; 
box-shadow: 0px 0px 15px var(--subtitle);  
}  