body {
  margin: 0px;
  font-size: max(2.5vh, 24px);
}
header h1 {
  background-color: lightcyan;
  margin: 0px;
  padding: 2vh;
}
header h2 {
  background-color: lightcyan;
  margin: 0px;
  padding-top: 2vh;
  padding-bottom: 2vh;
}
header p {
  border-left: 4px solid coral;
  border-bottom: solid 1px coral;
  padding-left: 4px;
  margin-block-end: 0px;
  margin: 8px;
  margin-bottom: 10px;
  background-color: #FFFFFF;
}
section {
  display: flex;
  align-items: center;
  width: 100%;
}
section + section {
  margin-top: 20px;
}

.radio-container {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.radio-button {
  opacity: 0;
  position: absolute;
  top: -5%;
  left: -5%;
  height: 110%;
  width: 110%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.radio-icon {
  padding: 4px;
  height: max(2.5vw, 48px);
  width: auto;
  stroke: #AAAAAA;
  transition: transform 500ms ease;
}

.icon-fill-circle {
  fill: #AAAAAA;
}

.radio-button:checked + .icon-fill-circle {
  fill: white;
  background-color: #CD4444;
  /* border: 2px solid #1111CD; */
}

.radio-button:checked + .icon-double-circle {
  background-color: #E16D11;
  /* border: 2px solid #CD1111; */
}

.radio-button:checked + .icon-circle {
  background-color: #4DE111;
  /* border: 2px solid #1111CD; */
}

.radio-button:checked + .icon-cross {
  background-color: #4444CD;
  /* border: 2px solid #CD1111; */
}
.radio-button:checked + .radio-icon {
  transform: scale(1.1, 1.1);
  stroke: white;
  border-radius: 5px;
  border: 1px solid black;
  /* border: 4px solid #CD11CD; */
}

.all-button .radio-icon {
  background-color: white;
  border-radius: 5px;
  transition: transform 200ms ease, filter 100ms ease;
}
.all-button .icon-fill-circle {
  fill: #CD4444;
  stroke: #CD4444;
  fill: white;
  stroke: white;
  background-color: #CD4444;
}
.all-button .icon-double-circle {
  stroke: #E16D11;
  stroke: white;
  background-color: #E16D11;
}
.all-button .icon-circle {
  stroke: #4DE111;
  stroke: white;
  background-color: #4DE111;
}
.all-button .icon-cross {
  stroke: #4444CD;
  stroke: white;
  background-color: #4444CD;
}
.all-button {
  cursor: pointer;
  padding-inline: 0px;
  padding-block: 0px;
}
.all-button:hover .radio-icon {
  filter: brightness(0.95);
}
.all-button:active {
  transform: scale(0.9, 0.9);
}

.radio-label {
  width: 50%;
  height: 80px;
  align-content: center;
}
.radio-box {
  width: 80px;
  height: 80px;
}

/*.all-button:active .radio-icon {
  filter: brightness(1.05);
}/**/
/*#all-button-circle:checked:has(> .radio-container):has(> section) section .radio-container .icon-circle:has(> .radio-container) {
  display: none;
}
#all-button-cross:checked:has(> .radio-container):has(> section) section .radio-container .icon-cross:has(> .radio-container) {
  display: none;
}/**/
