/* Info Box Leistungen */
.btlr-box-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btlr-box {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 55px 0px 22px 22px;
  border-radius: 24px;
  font-family: var(--font-primary);
  box-sizing: border-box;
}

.btlr-box .icon {
  width: 64px;
  height: 64px;
  background-color: #034e7b;
  border: 3px solid #a37c00;
  border-radius: 50%;
  margin-bottom: 20px;
}

.btlr-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--bt-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1; /* kleiner Zeilenabstand */
}

.btlr-box span {
  display: inline-block;
}

.btlr-box p {
  font-size: 17px;
  color: var(--bt-blue);
  line-height: 1.6;
}

.btlr-box .plus {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: var(--bt-blue);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
}
/* Farben für Boxen */
.btlr-box.green {
  background-color: #dfecbd;
}

.btlr-box.beige {
  background-color: #fef9ee;
}

.btlr-box.blue {
  background-color: #034e7b;
}

.btlr-box.beige .plus {
  background-color: #94bf24;
}

/* wird benutzt */
.icon-kreis {
	background-color: var(--bt-blue) !important;
	color: white !important;
	border: 3px solid #a37c00 !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 62px !important;        /* saubere Gesamtgröße */
	height: 62px !important;       /* saubere Gesamtgröße */
	position: absolute !important;
	top: 14px !important;
	left: 24px !important;
	z-index: 5 !important;
	/* box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important; */
}

/* Icon innerhalb des Kreises kleiner grösser  machen */
.icon-kreis img {
	width: 45px;
	height: 45px;
	/* font-size: 68px !important; /* anpassen nach Wunsch wenn stattdesen thegem icons mit i verwendet */
	line-height: 1 !important;
}
.btlr-plus {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: var(--bt-blue);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
}
.btlr-plus-green {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: var(--bt-green);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
}
.btlr-plus-green a,
.btlr-plus a {
  color: #fff !important;        /* Weißer Text */
  text-decoration: none !important; /* Kein Unterstrich */
  display: block;                /* gesamte Fläche klickbar */
  width: 100%;
  height: 100%;
  border-radius: 50%;
  line-height: 32px;             /* zentriert das Plus vertikal */
}

.btlr-plus-green a:hover,
.btlr-plus a:hover {
  color: #fff;                   /* auch beim Hover weiß lassen */
  text-decoration: none;         /* kein Effekt beim Hover */
}

/* Neue Topbar für Icon + Plus */
.btlr-top-icons {
  position: absolute;
  /* padding: 120px 120px 120px 120px !important; */
  
  top: -55px;
  right: 4px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 /* pointer-events: none;  verhindert versehentliches Anklicken */
  z-index: 2;
}
@media (max-width: 768px) {
  .btlr-top-icons {
	top: -55px;
  }
  .btlr-plus-green,
  .btlr-plus {
    position: absolute;
    top: 15px;
    right: 10px;
 
  }
}