/** Shopify CDN: Minification failed

Line 86:13 Unexpected "{"
Line 86:22 Expected ":"
Line 93:13 Unexpected "{"
Line 93:22 Expected ":"
Line 98:13 Unexpected "{"
Line 98:22 Expected ":"
Line 105:13 Unexpected "{"
Line 105:22 Expected ":"
Line 116:13 Unexpected "{"
Line 116:22 Expected ":"
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.wd-element-barometer-container {
  display: flex;
  flex-direction: row; /* Standard: Text links, Bild rechts */
  justify-content: flex-start;
  align-items: center;
}

.wd-element-barometer-text-container {
  flex: 1; /* Text nimmt den verfügbaren Platz ein */
  text-align: left; /* Text linksbündig */
  margin-right: 20px; /* Abstand zwischen Text und Bild */

}
  .wd-element-barometer-text-container p {  font-size:1.2rem;}

.wd-element-barometer-image-wrapper {
  flex: 0 0 auto; /* Bild hat eine feste Breite */
  width:35%;
}

.wd-element-barometer-image-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0 auto;
}

.wd-element-barometer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .wd-element-barometer-container {
    flex-direction: column; /* Mobil: Text und Bild untereinander */
    justify-content: center;
    align-items: center;
  }

  .wd-element-barometer-text-container {
    text-align: center; /* Text zentrieren für Mobilgeräte */
    margin-right: 0; /* Kein Abstand zum Bild */
    margin-bottom: 20px; /* Abstand unterhalb des Texts */
  }

  .wd-element-barometer-image-wrapper {
    margin-bottom: 0; /* Keine zusätzlichen Abstände */
    width:50%;
  }

  .wd-element-barometer-image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.wd-element-{{ section.id }}-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.wd-element-{{ section.id }}-text-container {
  flex: 1;
  padding-right: 20px;
}

.wd-element-{{ section.id }}-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wd-element-{{ section.id }}-image-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wd-element-{{ section.id }}-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .wd-element-{{ section.id }}-container {
    flex-direction: column;
  }

  .wd-element-{{ section.id }}-text-container {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .wd-element-{{ section.id }}-image-wrapper {
    width: 100%;
    justify-content: center;
  }

  .wd-element-{{ section.id }}-image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}