body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

.containerAlt {
  margin-right: auto;
  margin-left: auto;
  max-width: 2100px;
  width: 100%;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 0.7vw;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #cacaca;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Custom Checkmark mit schwarz-grauem Rand und weißer Füllung */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff; /* weißer Hintergrund */
  border: 2px solid #606060; /* schwarz-grauer Rand */
  border-radius: 4px; /* leicht gerundete Ecken */
}

/* Bei Mouse-Over, füge einen leicht grauen Hintergrund hinzu */
.checkbox-container:hover input ~ .checkmark {
  background-color: #f9f9f9;
}

/* Wenn das Checkbox kontrolliert ist, füge einen blauen Hintergrund mit einem Check-Zeichen hinzu */
.checkbox-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Erstelle das Checkmark-Zeichen */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Zeige das Checkmark, wenn das Checkbox geprüft ist */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style das Checkmark-Zeichen */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}