/* CSS fürs TYPO3 Backend RTE */
/* RTE-Styles */





.ck-content .btn {
    border: 2px solid black;
    background-color: white;
    color: black;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
  }



/* listen */

ul.custom-list {
  list-style: none;
  padding-left: 0;
}

ul.custom-list li {
  position: relative;
  padding-left: 28px; /* Platz für das SVG */
  margin-bottom: 12px;
  line-height: 1.5; /* Standard Line-Height für den Text */
  font-size: 16px; /* Schriftgröße definieren */
}

ul.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em; /* Abstand zur ersten Zeile, orientiert an der Schriftgröße */
  width: 1em; /* Symbolgröße proportional zur Schriftgröße */
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 17L11 12L6 7M13 17L18 12L13 7' stroke='rgb(162,180,64)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;

}

ul.customlist-wide li{
 margin-bottom: 20px;
}


 p.footer-header {
    text-transform: none;
    font-size: 30px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}