/*
.modal-body {
    padding: 20px;
}
*/
h1.radiobutton {
  color: #3c8dbc;
  margin-bottom: 2rem;
}
section.radiobutton {
  display: flex;
  flex-flow: row wrap;
}

section.radiobutton > div {
  flex: 1;
  padding: 0.5rem;
}

section.radiobutton input[type=radio] {
  display: none;
}
section.radiobutton input[type=radio]:not(:disabled) ~ label {
  cursor: pointer;
}
section.radiobutton input[type=radio]:disabled ~ label {
  color: #3c8dbc;
  border-color: #3c8dbc;
  box-shadow: none;
  cursor: not-allowed;
}

section.radiobutton label {
  min-width:100px;
  color: #3c8dbc;
  height: 100%;
  display: block;
  background: white;
  border: 2px solid #3c8dbc;
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0px 3px 10px -2px rgba(60, 110, 188, 0.5);
  position: relative;
}

section.radiobutton input[type=radio]:checked + label {
  background: #3c8dbc;
  color: white;
  box-shadow: 0px 0px 20px rgba(60, 110, 188, 0.75);
}

section.radiobutton input[type=radio]:checked + label::after {
  color: #3d3f43;
  font-family: FontAwesome;
  border: 2px solid #3c8dbc;
  content: "";
  font-size: 18px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  width: 30px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 3px -2px rgba(0, 0, 0, 0.25);
}

section.radiobutton input[type=radio]#control_05:checked + label {
  background: red;
  border-color: red;
}

p {
  font-weight: 400;
}

@media only screen and (max-width: 700px) {
  section {
    flex-direction: column;
  }
}
