.choosers {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  flex-wrap: wrap;
}
.chooser {
  border-radius: 10px;
  border: solid 1px #2e67e2;
  margin: auto 10px;
  width: 250px;
  position: relative;
}

.chooser-topbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: #2e67e2 1px solid;
}
.chooser-title {
  font-size: 20px;
  margin: 0 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.chooser-info {
  border: #2e67e2 1px solid;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  margin: 0 10px;
}
.chooser-info:hover {
  cursor: pointer;
}
.chooser-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto 10px;
}
.chooser-stellen {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0;
}
.chooser-stellen > div {
  margin: auto 0;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}
.chooser-stellen > input {
  height: 40px;
  width: 40px;
  display: flex;
  text-align: center;
}
.chooser-stellen > input:disabled {
  width: 60px;
}
.chooser-dauer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0;
}
.chooser-dauer > select {
  width: 100%;
  height: 40px;
  border-radius: 6px;
}
.chooser-dauer-info {
  font-size: 12.5px;
  font-family: Arial, Helvetica, sans-serif;
}
.chooser-premium {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 10px 0;
}
.chooser-premium > input {
  width: 20px;
  height: 20px;
  margin: auto 10px;
}
.chooser-premium > div {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  text-wrap: wrap;
}
.chooser-price {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 10px 0;
  border: #2e67e2 1px solid;
  border-radius: 5px;
}
.chooser-price-text {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  margin: auto 10px;
  padding: 10px;
  > span {
    font-size: 20px;
  }
}
.chooser-button {
  background-color: #2e67e2;
  border-radius: 5px;
  border: none;
  color: white;
  padding: 10px;
  margin: 10px 0;
  font-size: 15px;
}
.chooser-button:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.2s;
}
.chooser-extend {
  width: 100%;
  height: calc(100% - 61px);
  border-radius: 0 0 10px 10px;
  display: none;
  z-index: 100;
  position: absolute;
  top: 61px;
  left: 0px;
  background-color: white;
}
.chooser-extend-text-box {
  position: relative;
  flex-shrink: 1;
  margin: 5px 10px;
  width: calc(100% - 20px);
  > p {
    font-size: 15px;
    margin: 4px 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  > video {
    width: 80%;
    margin: 10px 10%;
  }
}
@media (max-width: 560px) {
  .chooser {
    margin: 10px 10px;
  }
}
