* {
  box-sizing: border-box;
}

html {
  font-size: 120%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  background: lightgrey;
}
.container {
  background: white;
  width: 90%;
  padding: 0.5rem;
  margin: auto;
}
#head {
  background: white;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Images und Logos */
.logo {
  display: flex;
  width: 70%;
  margin: 1rem;
}
input#kundennummer {
  width: 100%;
  border-radius: 0.5rem;
  height: 2rem;
  text-align: center;
  font-size: 1.25rem;
}
button#validateID {
  text-align: center;
  font-size: 1.25rem;
  padding: 0.25rem;
  border-radius: 0.5rem;
  background-color: #eeeded;
  margin-top: 0.25rem;
  width: 100%;
  border: none;
}

.cb-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 0.5rem;
}
.text-left{
  display: flex;
  justify-content: center;
  flex: 0 0 50%;
  padding: 0.5rem;
}
.text-right{
  display: flex;
  justify-content: center;
  flex: 0 0 50%;
  padding: 0.5rem;
}
.radio-wrapper {
  display: flex;
  justify-content: center;
  flex: 0 0 10%;
}
.spacer {
  display: flex;
  flex: 0 0 40%;
  border-radius: 1rem;
}
.spacer.a {
  background-color: #035689;
}
.spacer.b {
  background-color: #007EBE;
}
.spacer.c {
  background-color: #35AA6C;
}
.spacer.d {
  background-color: #DDD421;
}
.spacer.e {
  background-color: #FFC927;
}
.spacer.f {
  background-color: #FF9B35;
}
.spacer.g {
  background-color: #F33D6D;
}

.radio-A,.radio-B {
  width: 75%;
}

#submit,#retry {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #eeeded;
  margin-bottom: 1rem;
}


#result_wrapper,#error_wrapper{
  display: none;
}
