.ssw-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  align-items: end;
}

@media only screen and (max-width: 1170px) and (min-width: 640px) {
  .ssw-form {
    grid-template-columns: repeat(3, 1fr);
  }
  .ssw-form button {
    grid-column: 1 / -1;
  }
}

@media only screen and (max-width: 639px) {
  .ssw-form {
    grid-template-columns: 1fr;
  }
}

.ssw-form select,
.ssw-form button {
  padding: 0.75rem;
  border: 2px solid #000;
  background-color: #fff;
  font-size: 1rem;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  box-sizing: border-box;
}

.ssw-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23000" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5rem top 50%;
  background-size: 0.75rem auto;
  padding-right: 1.5rem;
}

.ssw-form button {
  line-height: 1.7;
  text-align: center;
}

.ssw-form button:hover {
  background-color: #000;
  color: #fff;
}

.ssw-result {
  margin-top: 1rem;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.ssw-box {
  margin-top: 1rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 5px;
  padding: .75em 1em 1em;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-sizing: border-box;
}

.ssw-box .ssw-icon {
  flex-shrink: 0;
}

.ssw-box .ssw-icon i {
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.ssw-intro {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.ssw-intro a {
  color: #000;
  text-decoration: underline;
}

.ssw-intro a:hover {
  text-decoration: none;
}

.ssw-box .ssw-text {
  flex: 1;
  line-height: 1.5;
}

.ssw-box .ssw-text p:last-child {
  margin-bottom: 0;
}

.ssw-box.info .ssw-icon i {
  color: #000;
}

.ssw-box.warning {
  border-color: #e00000;
}

.ssw-box.warning .ssw-icon i {
  color: #e00000;
}

.ssw-box.hinweis {
  border-color: #009ee0;
  background: #fff;
}

.ssw-box.hinweis .ssw-icon i {
  color: #009ee0;
}

.ssw-choice {
  margin: 1.5rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media only screen and (max-width: 639px) {
  .ssw-choice {
    grid-template-columns: 1fr;
  }
}

.ssw-choice button {
  background: #fff;
  border: 2px solid #000;
  border-radius: 5px;
  padding: .75em;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ssw-choice button:hover {
  background: #000;
  color: #fff;
}

.ssw-choice button.active {
  background-color: #000;
  color: #fff;
}