/* Stand: 2024-10-26 23:22 */
/* UTILITIES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  background-color: #FFFFFF;
  background: url(Bilder/Verein/background.png);
  background-attachment: fixed;
  background-size: auto 100%;
  z-index: 1;
}

a {
  text-decoration: underline;
  color: #000000;
}

li {
  list-style: none;
}

/* NAVBAR STYLING STARTS */
.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* LOGO */
.logo img {
  height: 60px;
}

.logoMobil img {
  height: 50px;
}

.title a,
.titleMobil a {
  color: red;
  font-weight: 1000;
  text-decoration: none;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 125%;
  z-index: 3;
}

.menu li:hover {
  background-color: rgb(65, 7, 7);
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 20px;
}

/* DROPDOWN MENU */
.Events {
  position: relative;
}

.Rennserien {
  position: relative;
}

.Informationen {
  position: relative;
}

.dropdownHover {
  position: relative;
}

@media (min-width: 1251px) and (min-height: 700px) {
  .dropdown {
    background-color: #000000;
    padding: 0.5em 0;
    position: absolute;
    /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 5px;
    background-color: #000000;
    white-space: nowrap;
  }

  .navbar {
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    height: 100px;
    padding-left: 7.4%;
    padding-right: 7.4%;
    padding-top: 12px;
    padding-bottom: 12px;
    background: #000000;
    box-shadow: 0px 4px 5px -2px gray;
    color: #fff;
    z-index: 3;
  }

  .title {
    font-size: 38px;
    color: red;
    margin-right: auto;
    margin-left: 30px;
  }

  .titleMobil {
    display: none;
  }

  .logoMobil {
    display: none;
  }

  .dropdown li+li {
    margin-top: 5px;
  }

  .dropdown li {
    text-align: left;
  }

  .dropdown li a {
    display: block;
    padding: 5px;
    width: 100%;
  }

  .dropdown li img {
    height: 45px;
  }

  .menu hr {
    border: 1px solid rgb(57, 57, 57);
  }

  .dropdown li:hover {
    background-color: black;
  }

  .Rennserien:hover .dropdown {
    display: block;
  }

  .Events:hover .dropdown {
    display: block;
  }

  .Informationen:hover .dropdown {
    display: block;
  }
}

/* RESPONSIVE NAVBAR MENU STARTS */
/* CHECKBOX HACK */
input[type=checkbox] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 20px;
  user-select: none;
  width: 10px;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 1250px) or (max-height:699px) {
  .navbar {
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    height: 80px;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 6px;
    padding-bottom: 6px;
    background: black;
    box-shadow: 0px 4px 5px -2px gray;
    color: #ffffff;
    z-index: 3;
  }

  .menu {
    transition: opacity 0.2s ease-out;
    opacity: 0;
    overflow: hidden;
    height: 0px;
    display: block;
    z-index: 3;
    position: fixed;
    width: 0px;
    margin-top: 15px;
    margin-bottom: 200px;
    background-color: #000000;
    right: 0;
    left: 0;
    text-align: left;
    padding: 20px 0px;
    padding-left: 10px;
    overflow-y: auto;
  }

  /* HAMBURGER MENU */
  .hamburger {
    font-size: 30px;
    user-select: none;
    width: fit-content;
  }

  .titleMobil {
    font-size: 30px;
    color: red;
    margin-right: auto;
    margin-left: auto;
  }

  .title {
    display: none;
  }

  .logo {
    display: none;
  }

  .menu li:hover {
    background-color: black;
    transition: 0.9s ease;
  }

  .menu li+li {
    margin-top: 5px;
  }

  .menu li {
    padding-left: 10px;
    padding-right: 10px;
  }

  #checkbox_toggle:checked~.menu {
    opacity: 1;
    height: calc(100% - 60px);
    width: 230px;
    position: fixed;
    top: 60px;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    position: relative;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 15px;
    display: none;
    top: 10px;
  }

  .dropdown img {
    height: 35px;
  }

  #show-informationen:checked~.Informationen .dropdown {
    display: block;
  }

  #show-rennserien:checked~.Rennserien .dropdown {
    display: block;
  }

  #show-events:checked~.Events .dropdown {
    display: block;
  }

  .menu hr {
    border: 1px solid rgb(53, 53, 53);
    margin-left: auto;
    margin-right: auto;
  }

  .Informationen hr {
    width: 100px;
    display: none;
  }

  .Rennserien hr {
    width: 100px;
    display: none;
  }

  .Events hr {
    width: 180px;
    display: none;
  }
}

/* Für Fußzeile */
.Fußzeile {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 50px;
  background: black;
  box-shadow: 0px -4px 5px -2px gray;
  text-align: center;
  align-items: center;
  color: white;
  z-index: 2;
}

@media (max-width: 1250px) {
  .Fußzeile {
    padding-bottom: 50px;
  }
}

.Fußzeile a {
  color: white;
  text-decoration: underline;
}

.Fußzeile h1 {
  text-align: center;
  color: #FFFFFF;
  font-size: 15px;
}

.Fußzeile_text {
  padding-top: 20px;
  padding-bottom: 5px;
}

.Fußzeile_icons {
  padding: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  color: black;
}

.Fußzeile_icons img {
  height: 35px;
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 1250px) {
  .Fußzeile h1 {
    font-size: 12px;
  }

  .Fußzeile_text {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .Fußzeile_icons {
    padding: 10px;
  }

  .Fußzeile_icons img {
    height: 20px;

  }
}

/* Inhalt der Page */
/* Basis Klassen */
.content {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  display: flex;
  align-items: top;
  justify-content: center;
  z-index: 0;
}

@media (max-width: 1250px) {
  .content {
    width: 100%;
  }
}

.overflow {
  overflow-x: auto;
}

.Uberschrift {
  width: 1200px;
  padding-top: 30px;
  padding-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 1250px) {
  .Uberschrift {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-height: 600px) and (min-width: 1251px) {
  .Uberschrift {
    width: 940px;
    padding-left: 40px;
  }
}

#Rennserien.Uberschrift {
  padding-top: 5px;
  padding-bottom: 0px;
}

/*Home Basics*/
.StartingPageContent {
  width: 940px;
  padding-bottom: 20px;
  background-color: transparent;
  padding-left: 40px;
  text-align: left;
  align-items: center;
}

@media (max-width: 1250px) {
  .StartingPageContent {
    width: 100%;
    padding-bottom: 10px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
  }
}

/*Standard Basics*/
.StandardContent {
  width: 940px;
  margin-left: 0px;
  padding-bottom: 20px;
  padding-left: 40px;
  background-color: transparent;
  text-align: left;
  align-items: center;
}

@media (max-width: 1250px) {
  .StandardContent {
    width: 100%;
    padding-bottom: 10px;
    padding-left: 5%;
    padding-right: 5%;
    box-shadow: none;
  }
}

/*Home Fonts*/
.StartingPageContent h1,
.Uberschrift h1 {
  color: white;
  font-size: 50px;
  font-weight: 900;
  padding-top: 42px;
  padding-bottom: 45px;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 2px lightgray;
}

#Rennserien.Uberschrift h1 {
  padding-top: 0px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-bottom: 0px;
}

@media (max-width: 1250px) {

  .StartingPageContent h1,
  .Uberschrift h1 {
    font-size: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-radius: 0px;
  }
}

.StartingPageContent h2 {
  color: rgb(212, 0, 0);
  font-size: 25px;
  line-height: 32px;
  font-weight: 800;
  padding-top: 30px;
  padding-bottom: 5px;
  text-decoration: underline;
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .StartingPageContent h2 {
    font-size: 20px;
    line-height: 25px;
  }
}

.StartingPageContent h3 {
  color: #000000;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .StartingPageContent h3 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 8px;
  }
}

.StartingPageContent h4 {
  color: #000000;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .StartingPageContent h4 {
    font-size: 14px;
    line-height: 19px;
    text-align: left;
  }
}

/*StandardContent Schriftarten*/
.StandardContent h1 {
  color: #000000;
  font-size: 42px;
  font-weight: 900;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .StandardContent h1 {
    font-size: 25px;
    font-weight: 900;
    padding-top: 35px;
    padding-bottom: 15px;
  }
}

.StandardContent h2 {
  color: rgb(212, 0, 0);
  font-size: 25px;
  line-height: 32px;
  font-weight: 800;
  padding-top: 20px;
  padding-bottom: 5px;
  text-decoration: underline;
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .StandardContent h2 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 800;
  }
}

.StandardContent h3 {
  color: #000000;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  padding-top: 8px;
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .StandardContent h3 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    padding-top: 8px;
  }
}

.StandardContent h4,
.Kapitel h4,
.Kapitel h5 {
  color: #000000;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  max-width: 100%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
}

.StandardContent h4 li {
  margin-left: 20px;
  list-style: circle;
}

@media (max-width: 1250px) {
  .StandardContent h4 {
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    text-align: left;
  }
}

/* Reglement Schriftarten */
.Reglement h1 {
  color: rgb(212, 0, 0);
  font-size: 25px;
  line-height: 32px;
  font-weight: 800;
  padding-top: 20px;
  padding-bottom: 5px;
  text-decoration: underline;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
}

@media (max-width: 1250px) {
  .Reglement h1 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 800;
  }
}

.Reglement h2 {
  color: #000000;
  font-size: 20px;
  line-height: 27px;
  font-weight: 1000;
  padding-bottom: 10px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .Reglement h2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 1000;
  }
}

.Reglement h3 {
  padding-top: 10px;
  padding-bottom: 5px;
  text-align: left;
}

.Reglement h4 {
  padding-bottom: 3px;
  text-align: left;
}

/* Titel Styling */
.Titel {
  width: 100%;
  text-align: center;
  vertical-align: center;
  background-color: #000000;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 2px lightgray;
}

.Titel img {
  box-shadow: none;
  height: 125px;
  margin-top: 5px;
  margin-bottom: 5px;
}

#HRPS.Titel img {
  margin-top: 15px;
  margin-bottom: 15px;
  height: 105px;
}

@media (max-width: 1250px) {
  .Titel {
    width: 100%;
    border-radius: 0px;
    box-shadow: none;
  }

  .Titel img {
    height: 100px;
  }

  #HRPS.Titel img {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 80px;
  }
}

/*Image Home*/
.StartingPageContent img {
  border: 1px solid black;
  box-shadow: 0px 0px 10px 2px lightgray;
}

/*Image Standard*/
.StandardContent img {
  border: 1px solid black;
}

/*Kleine Bilder mit ca halber Width*/
.ImageSmall img {
  width: 430px;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 0px 0px 10px 2px lightgray;
  border-radius: 8px;
}

@media (max-width: 1250px) {
  .ImageSmall img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/*Große Bilder mit ganzer Width*/
.ImageBig img {
  width: 100%;
  box-shadow: 0px 0px 10px 2px lightgray;
  border-radius: 8px;
}

/*Bilder in alter Wertung*/
.ImageAlt img {
  box-shadow: 0px 0px 10px 2px lightgray;
  max-width: 420px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.ImageAlt h3 {
  width: 420px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

@media (max-width: 1250px) {
  .ImageAlt img {
    max-width: max(100%, 320px);
    margin-left: auto;
    text-align: center;
  }

  .ImageAlt h3 {
    width: max(100%, 320px);
    margin-left: auto;
    text-align: center;
  }
}

/* Google Maps Vereinsheim*/
.StandardContent iframe {
  border: 1px solid black;
  box-shadow: 0px 0px 10px 2px lightgray;
  border-radius: 8px;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
}

.slideshow-container2 {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides img {
  box-shadow: 0px 0px 10px 2px lightgray;
  border-radius: 8px;
}

.mySlides2 {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides2 img {
  box-shadow: 0px 0px 10px 2px lightgray;
  border-radius: 8px;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: red;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
}

.prev2,
.next2 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: red;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Position the "next button" to the right */
.next {
  right: 0%;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0%;
  border-radius: 3px 0 0 3px;
}

.next2 {
  right: 0%;
  border-radius: 3px 0 0 3px;
}

.prev2 {
  left: 0%;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev2:hover,
.next2:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: white;
  font-size: 20px;
  font-weight: 1000;
  text-shadow: 1px 1px 2px black;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot2 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

@media (max-width: 1250px) {
  .dot {
    height: 10px;
    width: 10px;
  }

  .dot2 {
    height: 10px;
    width: 10px;
  }
}

.active,
.dot:hover {
  background-color: black;
}

/*Offset für Anchors*/
.anchor {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
}

@media (max-width: 1250px) {
  .anchor {
    top: -175px;
  }
}

/*Nav Leiste für Anchors*/
.Kapitel {
  width: 220px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: sticky;
  height: fit-content;
  max-height: calc(100vh - 140px);
  top: 120px;
  z-index: 2;
  padding-left: 0px;
  margin-right: 40px;
  background-color: transparent;
  padding-bottom: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}

.Kapitel h2 {
  color: black;
  font-size: 30px;
  line-height: 36px;
  font-weight: 800;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.Kapitel h3,
.Kapitel h4 {
  text-align: left;
  line-height: 25px;
  margin-bottom: 15px;
}

.Kapitel h4 a {
  color: black;
  text-decoration: underline;
}

.Kapitel hr {
  margin-top: 15px;
  margin-bottom: 20px;
}

.Kapitel img {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .Kapitel {
    display: none;
  }
}

@media (max-height: 600px) {
  .Kapitel {
    display: none;
  }
}

/*Kapitel Klein*/
.KapitelKlein {
  position: sticky;
  z-index: 2;
  background-color: rgb(245, 245, 245);
  padding-bottom: 20px;
  padding-top: 10px;
  overflow-anchor: none;
  padding-left: 5%;
  padding-right: 5%;
}

.KapitelKlein h3 {
  text-align: center;
}

.Kapitel h5 {
  line-height: 30px;
}

.KapitelKlein a {
  color: black;
  text-decoration: underline;
}

@media (min-width: 1251px) and (min-height: 601px) {
  .KapitelKlein {
    display: none;
  }
}

@media (max-width: 1250px) {
  .KapitelKlein {
    width: 111.2%;
    margin-left: -5.6%;
    top: 80px;
  }
}

/*Content Nebeneinander Class*/
.text-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1250px) {
  .text-container {
    width: 100%;
  }

  .image-container {
    width: 100%;
  }
}

.image-container h5 {
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  padding-bottom: 5px;
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .image-container h5 {
    text-align: center;
  }

  .image-container h3 {
    text-align: center;
  }
}

.text {
  box-sizing: border-box;
  max-width: 430px;
  flex: 1 1 430px;
}

.text img {
  max-width: 430px;
  box-shadow: 0px 0px 10px 2px lightgray;
  margin-left: 0px;
  margin-right: 0px;
}

#Rechts.text {
  margin-left: 20px;
}

#Links.text {
  margin-right: 20px;
}

@media (max-width: 1250px) {
  .text {
    max-width: 100%;
    flex: 1 1 100%;
    margin-right: 0px;
  }

  .text img {
    max-width: 100%;
  }

  #Rechts.text {
    margin-left: 0px;
  }
  
  #Links.text {
    margin-right: 0px;
  }
}

.textVideo {
  box-sizing: border-box;
  max-width: 430px;
  flex: 1 1 430px;
  margin-top: 0px;
}

#Rechts.textVideo {
  margin-left: 40px;
}

@media (max-width: 1250px) {
  .textVideo {
    text-align: center;
    max-width: min(100%, 560px);
    flex: 1 1 min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
  }

  #Rechts.textVideo {
    margin-left: auto;
    margin-right: auto;
  }
}

.textKlein {
  box-sizing: border-box;
  max-width: 380px;
  flex: 1 1 380px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .textKlein {
    max-width: min(100%, 560px);
    flex: 1 1 min(100%, 560px);
  }
}

.textMitte {
  box-sizing: border-box;
  max-width: 430px;
  flex: 1 1 430px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#Links.textMitte {
  margin-left: 0;
}

#Rechts.textMitte {
  margin-left: 40px;
}

.textMitte img {
  width: 430px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 8px;
}

@media (max-width: 1250px) {
  .textMitte {
    max-width: 100%;
    flex: 1 1 100%;
  }

  #Links.textMitte {
    margin-left: auto;
  }

  #Rechts.textMitte {
    margin-left: auto;
  }

  .textMitte img {
    max-width: 100%;
  }
}

.textUnten {
  box-sizing: border-box;
  max-width: 440px;
  flex: 1 1 440px;
  margin-top: auto;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1250px) {
  .textUnten {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/*6h Rennen Bilder*/
.Teams6h img {
  border: none;
  box-shadow: none;
  text-align: center;
  height: 200px;
  width: auto;
  max-width: auto;
}

@media (max-width: 1250px) {
  .Teams6h img {
    width: 100%;
    height: auto;
  }
}

/*Home Tables*/
.StartingPageContent table,
.StartingPageContent th,
.StartingPageContent td {
  max-width: 100%;
  border-collapse: collapse;
}

.StartingPageContent th,
.StartingPageContent td {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.StartingPageContent h5 {
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 1250px) {

  .StartingPageContent table,
  .StartingPageContent th,
  .StartingPageContent td {
    margin-left: auto;
    margin-right: auto;
  }

  .StartingPageContent th,
  .StartingPageContent td {
    padding-left: 4px;
    padding-right: 4px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
  }

  .StartingPageContent h5 {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
  }
}

/*Standard Tables*/
.StandardContent table,
.StandardContent th,
.StandardContent td {
  max-width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.StandardContent th {
  background-color: lightgray;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  border: 4px solid rgb(190, 190, 190);
}

.StandardContent td {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  border: 4px solid rgb(190, 190, 190);
}

.StandardContent h5 {
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 1250px) {
  .StandardContent th {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .StandardContent td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .StandardContent h5 {
    font-weight: 500;
    font-size: 11px;
  }
}

.NextEvent {
  background-color: transparent;
}

/*Counter Table Home*/
.counter-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.counter {
  box-sizing: border-box;
  max-width: 300px;
  margin-top: auto;
  margin-bottom: auto;
  flex: 1 1 300px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: transparent;
}

#Kapitel.counter {
  margin-left: 0px;
  margin-right: 0px;
}

@media (max-width: 1250px) {
  .counter {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }
}

.counter img {
  height: 80px;
  width: auto;
  border-radius: 8px;
}

#Kapitel.counter img {
  width: 200px;
  height: auto;
}

@media (max-width: 1250px) {
  .counter img {
    width: 60%;
    height: auto;
  }
}

.counter2 {
  width: 100%;
  text-align: left;
  background-color: transparent;
}

.counter2 table,
.counter2 th,
.counter2 td {
  border: none;
  box-shadow: none;
  color: #000000;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
}

@media (max-width: 1250px) {

  .counter2 table,
  .counter2 th,
  .counter2 td {
    font-size: 20px;
  }
}

.counter h6 {
  color: #000000;
  font-size: 35px;
  font-weight: 900;
  background-color: transparent;
}

.counter2 h6 {
  color: #000000;
  font-size: 30px;
  font-weight: 900;
  background-color: transparent;
}

@media (max-width: 1250px) {
  .counter h6 {
    font-size: 20px;
    padding-top: 10px;
    font-weight: 700;
  }

  .counter2 h6 {
    font-size: 20px;
    font-weight: 700;
  }
}

/*Neuigkeiten Tabelle Home*/
.Neuigkeiten {
  overflow-x: auto;
  background-color: transparent;
}

.Neuigkeiten h4 {
  margin-top: 8px;
}

.Neuigkeiten table,
.Neuigkeiten th,
.Neuigkeiten td {
  border: none;
  box-shadow: none;
  border-bottom: #000000;
  text-align: left;
  max-width: 100%;
  background-color: transparent;
}

.Neuigkeiten tr>td:first-child {
  padding-right: 25px;
}

.Neuigkeiten tr>td:nth-child(2) {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
}

@media (max-width: 1250px) {
  .Neuigkeiten tr>td:first-child {
    padding-right: 5px;
  }

  .Neuigkeiten tr>td:nth-child(2) {
    font-size: 14px;
    line-height: 19px;
  }
}

/* Mehrere Tabellen nebeneinander*/
.tabellen-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.tabelle {
  flex: 1 1 30%;
  min-width: 300px;
}

.Wertung {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.Wertung table,
.Wertung table th,
.Wertung table td {
  max-width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.WertungAlt {
  flex: 1 1 440px;
  max-width: 440px;
  box-sizing: border-box;
  background-color: transparent;
}

@media (max-width: 1250px) {
  .WertungAlt {
    max-width: max(100%, 320px);
  }
}

.TabelleVoll {
  width: fit-content;
  max-height: 800px;
  max-width: 100%;
  background-color: rgb(225, 225, 225);
  text-align: center;
  overflow-y: auto;
  overflow-x: auto;
  box-shadow: 0px 0px 10px 2px lightgray;
}

.TabelleVoll table,
.TabelleVoll th,
.TabelleVoll td {
  max-width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  border: none;
}

.TabelleVoll th {
  background-color: #000000;
  color: #FFFFFF;
  padding-bottom: 10px;
  padding-top: 10px;
}

.TabelleVoll tr:nth-child(even) td {
  background-color: rgb(238, 238, 238);
}

.TabelleVoll tr:nth-child(odd) td {
  background-color: rgb(225, 225, 225);
}

.TabelleVoll img {
  height: auto;
  width: 68px;
  border: none;
}

.TabelleVoll thead {
  position: sticky;
  top: 0;
  z-index: 1;
  /* Keep it on top of other rows */
}

/*Termin Tabelle Home*/
#Termine.TabelleVoll {
  margin-left: auto;
  margin-right: auto;
  max-height: 880px;
  max-width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0px 0px 10px 2px lightgray;
}

#Termine.TabelleVoll img {
  height: 50px;
  width: auto;
}

@media (max-width: 1250px) {
  #Termine.TabelleVoll {
    overflow-x: auto;
  }

  #Termine.TabelleVoll img {
    height: 30px;
    width: auto;
  }
}

#Termine.TabelleVoll table,
#Termine.TabelleVoll th,
#Termine.TabelleVoll td {
  max-width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  border: none;
}

@media (max-width: 1250px) {

  #Termine.TabelleVoll table,
  #Termine.TabelleVoll th,
  #Termine.TabelleVoll td {
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 80px;
  }
}

#Termine.TabelleVoll th {
  background-color: #000000;
  color: #FFFFFF;
  padding-bottom: 10px;
  padding-top: 10px;
}

#Termine.TabelleVoll thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

#Termine.TabelleVoll tr:nth-child(even) td {
  background-color: rgb(238, 238, 238);
}

#Termine.TabelleVoll tr:nth-child(odd) td {
  background-color: rgb(225, 225, 225);
}

@media (max-width: 1250px) {
  #Termine.TabelleVoll h3 {
    font-size: 12px;
  }
}

#Wertung.TabelleVoll {
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-height: 1000px;
}

@media (max-width: 1250px) {
  #Wertung.TabelleVoll {
    display: none;
  }
}

.Fahrerbild {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.Fahrerbild img {
  width: auto;
  height: 60px;
}

#Mieten.TabelleVoll {
  max-width: 100%;
  overflow-x: auto;
  max-height: 490px;
}

#Mieten.TabelleVoll table,
#Mieten.TabelleVoll th,
#Mieten.TabelleVoll td {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 1250px) {
  #Mieten.TabelleVoll {
    max-width: 100%;
    overflow-x: auto;
    max-height: 320px;
  }

  #Mieten.TabelleVoll table,
  #Mieten.TabelleVoll th,
  #Mieten.TabelleVoll td {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

#Standard.TabelleVoll {
  max-width: 100%;
  overflow-x: auto;
  max-height: 490px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#Standard.TabelleVoll table,
#Standard.TabelleVoll th,
#Standard.TabelleVoll td {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 1250px) {
  #Standard.TabelleVoll {
    max-width: 100%;
    overflow-x: auto;
    max-height: 320px;
  }

  #Standard.TabelleVoll table,
  #Standard.TabelleVoll th,
  #Standard.TabelleVoll td {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

#Gesamtwertung.TabelleVoll {
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  max-height: 1000px;
}

#Gesamtwertung.TabelleVoll table,
#Gesamtwertung.TabelleVoll th,
#Gesamtwertung.TabelleVoll td {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 1250px) {
  #Gesamtwertung.TabelleVoll {
    max-width: 100%;
    overflow-x: auto;
    max-height: 1000px;
  }

  #Gesamtwertung.TabelleVoll table,
  #Gesamtwertung.TabelleVoll th,
  #Gesamtwertung.TabelleVoll td {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

#WertungAlt.TabelleVoll,
#WertungAlt.TabelleVoll table {
  width: 420px;
  max-height: 310px;
}

@media (max-width: 1250px) {

  #WertungAlt.TabelleVoll,
  #WertungAlt.TabelleVoll table {
    width: max(100%, 320px);
    max-height: 250px;
  }
}

#NoHeight.TabelleVoll,
#NoHeight.TabelleVoll table {
  width: 420px;
  max-height: 100%;
}

@media (max-width: 1250px) {

  #NoHeight.TabelleVoll,
  #NoHeight.TabelleVoll table {
    max-width: max(100%, 320px);
  }
}

#Ergebnisse.TabelleVoll {
  margin-bottom: 30px;
}

@media (min-width: 1251px) {
  .WertungKlein {
    display: none;
  }
}

@media (min-width: 1251px) {
  .DisplayNone {
    display: none;
  }
}

@media (max-width: 1250px) {
  .DisplayNone2 {
    display: none;
  }
}

.Ergebnisse {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.Ergebnisse img {
  height: 40px;
  width: auto;
}

/* Login css stuff */
.login {
  width: 700px;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
}

.login h1 {
  text-align: center;
  color: black;
  font-size: 34px;
  padding: 30px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
}

.login h2 {
  text-align: center;
  color: red;
  font-size: 34px;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
}

.login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login form input[type="password"],
.login form input[type="text"] {
  width: 600px;
  height: 100px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 35px;
  text-align: center;
}

.login form input[type="submit"] {
  width: 100%;
  padding: 20px;
  margin-top: 20px;
  background-color: red;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
  font-size: 35px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);

}

.login form input[type="submit"]:hover {
  background-color: darkred;
  transition: background-color 0.2s;
}

.Fahrerfeld {
  width: 100%;
  overflow-x: auto;
  box-shadow: none;
}

.card-container {
  display: flex;
  gap: 16px; /* Abstand zwischen den Karten */
  width: fit-content; /* Begrenzung der maximalen Breite */
  padding: 16px;
  justify-content: left; /* Zentriert die Karten */
}

.card {
  background-color: black;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 260px; 
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Inhalt der Karte vertikal anordnen */
}

.card img {
  border: none;
}

.card-content {
  padding: 6px;
  height: fit-content;
  vertical-align: middle; 
}

.card-content img {
  width: 45%;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  height: auto; 
  border: none;
  vertical-align: middle; 
}

.card-content h3 {
  color: white;
  text-align: right;
  font-size: 32px;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 10px;
}

#HRPS.card-content h3 {
  color: white;
  text-align: right;
  font-size: 55px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  vertical-align: middle; 
}

#HRPS.card-content h4 {
  color: white;
  text-align: right;
  font-size: 50px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 10px;
  vertical-align: middle; 
}

.card-content > .Fahrerbild {
  text-align: left;
  margin-left: 8px;
  margin-right: 0;
  width: 100px;
  float: left;
  margin-top: 10px;
}

.card-content > .Fahrerbild img {
  height: 100px;
  width: auto;
  max-width: 85px;
}