@font-face {
  font-family: Anton;
  src: url("../fonts/Anton/Anton-Regular.ttf");
}

.preise {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.section-content {
  width: 90%;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 20px;
  flex-wrap: wrap;
}
.section-content-item {
  width: 200px;
  margin: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  border: solid 1px rgb(46, 103, 226);
  padding: 10px;
  background-color: white;
}
.content-item-topbar {
  width: 90%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid black;
  margin: 0 auto;
}
.content-item-title {
  font-size: 20px;
  font-weight: bold;
  margin: auto 10px;
  font-family: "Anton", sans-serif;
}
.content-item-info {
  user-select: none;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: solid black 0.4px;
  margin: auto 10px;
  font-size: 15px;
  font-family: "Anton", sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-item-info:hover {
  cursor: pointer;
}
.content-item-stellen {
  margin: 10px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.content-item-stellen-text {
  font-size: 15px;
  font-family: "Anton", sans-serif;
  margin: auto 10px;
}
.content-item-stellen-count {
  width: 40px;
  height: 30px;
  border-radius: 5px;
  border: solid black 0.4px;
  margin: auto 10px;
  font-size: 15px;
  font-family: "Anton", sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-item-dauer-select {
  width: 90%;
  margin: 10px auto;
  font-size: 15px;
  font-family: "Anton", sans-serif;
}
.content-item-dauer-select option {
  font-size: 15px;
  font-family: "Anton", sans-serif;
}
.content-item-premium {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}
.content-item-premium input {
  height: 30px;
  width: 30px;
  margin: auto 10px;
}
.content-item-premium-text {
  font-size: 15px;
  font-family: "Anton", sans-serif;
  margin: auto 10px auto 0;
}
.content-item-gesamt {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  border: solid 1px black;
  border-radius: 5px;
  padding: 10px;
}
.content-item-gesamt-text {
  font-size: 15px;
  font-family: "Anton", sans-serif;
  margin: auto 10px;
  > span {
    font-size: 20px;
    font-weight: bold;
  }
}
.content-item-book {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  border: solid 1px black;
  border-radius: 5px;
  background-color: rgb(46, 103, 226);
  color: white;
  font-size: 20px;
  font-family: "Anton", sans-serif;
  padding: 10px;
  > span {
    font-size: 20px;
    font-weight: bold;
  }
}
.premium {
  width: 80%;
  margin: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.premium table {
  width: 100%;
  margin: auto;
  table-layout: auto;
  border-collapse: collapse;
  background-color: #f1f1f1;
  border-radius: 10px;
}
.premium table tr {
  width: 100%;
  border-top: lightgrey 1px solid;
  border-bottom: lightgrey 1px solid;
}
.premium-first-cell,
th.premium-cell {
  width: 40%;
  text-align: center;
  color: grey;
  padding: 20px;
}
.premium-header-cell {
  font-weight: bold;
  padding: 20px;
}
td.premium-cell {
  width: 20%;
  padding: 10px;
  line-height: 24px;
}
.premium table tr.premium-header {
  border-top: none !important;
  border-bottom: lightgrey 1px solid;
}

.premium .last-row {
  border-bottom: none !important;
}
