body {

  color: #222;
}
.bg-light-gray,
.bg-light-gray .section-title .sub-title span {
  background: rgb(234, 232, 232);
}

.font-weight-bold {
  font-weight: 700 !important;
}

.widget .widget-title .h5 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.5px;
}


::selection {
  background: #1c58c7;

  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: #1c58c7;
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: #1c58c7;
  color: #ffffff;
  text-shadow: none;
}

.listing-title span.h6 {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  color: #333333;
  font-weight: 600;
}
.listing-title span.h6 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.5px;
}


.page-title h1.text-white, .page-title p.text-white  {
  font-family: 'Fredericka the Great', cursive;
  color: rgba(255, 255, 255, 0.9); /* Leicht transparentes Weiß */
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.btn-customer {
  background-color: #CE1324 !important;
  border-color: #CE1324 !important;
  color: #fff;
}

.btn-customer:hover {
  background-color: rgba(253, 76, 92, 0.8) !important;
  border-color: rgba(253, 76, 92, 0.8) !important;
  color: #fff;
}
.btn-customer:hover {
  color: #fff !important;
  background-position: 0;
}
.bg-customer {
  background: #CE1324 !important;
}
/* Listen- und Link-Stile */
ul.bullet {
  padding: 0;
  margin: 0;
}

ul.bullet li {
  font-weight: normal;
  line-height: 26px;
  list-style: none;
  position: relative;
  margin: 11px 0;
  padding-left: 22px;
  color: rgb(0, 11, 51);
}

ul.bullet li::before {
  width: 10px;
  border-radius: 500px;
  height: 10px;
  position: absolute;
  content: "";
  background: #CE1324;
  top: 10px;
  left: 0;
}
ul.check {

  padding-left: 0px;


}

ul.check li {
  list-style-type: none;
  margin: 11px 0;

}
ul.check li::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f00c';
  font-weight: bold;
  color: #CE1324;
  margin-right: 10px;
  font-size: 1.2rem;
}


ul.unsort {
  list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
  padding: 0; /* Entfernt Standard-Padding */
  margin: 0; /* Entfernt Standard-Margin */
  display: flex; /* Macht die Liste horizontal */
  gap: 0; /* Entfernt den Standard-Abstand zwischen den Elementen */
}

ul.unsort li {
  position: relative; /* Ermöglicht die Positionierung des Trennpunkts */
  padding: 0 10px; /* Gibt etwas Abstand zwischen Text und Trennpunkt */
}
ul.unsort li:first-child{
  padding-left: 0; /* Gibt etwas mehr Abstand für alle Elemente außer dem ersten */
}
ul.unsort li:not(:last-child)::after {
  content: "|"; /* Fügt den Trennpunkt hinzu */
  position: absolute;
  right: 0; /* Positioniert den Trennpunkt rechts vom Element */
  top: 50%;
  transform: translateY(-50%); /* Zentriert den Trennpunkt vertikal */
}

/* Listen- und Link-Stile */