/* AAAA */

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-tile-group .input-container {
  position: relative;
  height: 80px;
  width: 80px;
  margin: 0.5rem;
}

.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-group .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*height: 100%;*/
  /*border: 2px solid #a8895a;*/
  background-color:#f8f9c8;
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.radio-tile-group .input-container .radio-tile-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a8895a;
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile {
  background-color: #f8f9c8;
  border: 2px solid #a8895a;
  color: #a8895a;
  transform: scale(1.1, 1.1);
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: #a8895a;
  /*background-color: #e6e7a4;*/
}

/*  BBBB  */
.radio-tile-groupB {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-tile-groupB .input-containerB {
  position: relative;
  height: 80px;
  width: 80px;
  margin: 0.5rem;
}

.radio-tile-groupB .input-containerB .radio-buttonB {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-groupB .input-containerB .radio-tileB {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*height: 100%;*/
  /*border: 2px solid #999999;*/
  background-color:#ebebeb;
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.radio-tile-groupB .input-containerB .radio-tile-labelB {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999999;
}

.radio-tile-groupB .input-containerB .radio-buttonB:checked + .radio-tileB {
  background-color: #ebebeb;
  border: 2px solid #999999;
  color: #999999;
  transform: scale(1.1, 1.1);
}

.radio-tile-groupB .input-containerB .radio-buttonB:checked + .radio-tileB .radio-tile-labelB {
  color: #999999;
  /*background-color: #afafaf2e;*/
}

/*  CCCC  */
.radio-tile-groupC {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-tile-groupC .input-containerC {
  position: relative;
  height: 80px;
  width: 80px;
  margin: 0.5rem;
}

.radio-tile-groupC .input-containerC .radio-buttonC {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-groupC .input-containerC .radio-tileC {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*height: 100%;*/
  /*border: 2px solid #d77580;*/
  background-color:#ffccd2;
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.radio-tile-groupC .input-containerC .radio-tile-labelC {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d77580;
}

.radio-tile-groupC .input-containerC .radio-buttonC:checked + .radio-tileC {
  background-color: #ffccd2;
  border: 2px solid #d77580;
  color: white;
  transform: scale(1.1, 1.1);
}

.radio-tile-groupC .input-containerC .radio-buttonC:checked + .radio-tileC .radio-tile-labelC {
  color: #d77580;
  /*background-color: #079ad9;*/
}



/*  DDDD  */
.radio-tile-groupD {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-tile-groupD .input-containerD {
  position: relative;
  height: 80px;
  width: 80px;
  margin: 0.5rem;
}

.radio-tile-groupD .input-containerD .radio-buttonD {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-groupD .input-containerD .radio-tileD {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*height: 100%;*/
  /*border: 2px solid #079ad9;*/
  background-color:#caf2ff;
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.radio-tile-groupD .input-containerD .radio-tile-labelD {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #079ad9;
}

.radio-tile-groupD .input-containerD .radio-buttonD:checked + .radio-tileD {
  background-color: #caf2ff;
  border: 2px solid #079ad9;
  color: #079ad9;
  transform: scale(1.1, 1.1);
}

.radio-tile-groupD .input-containerD .radio-buttonD:checked + .radio-tileD .radio-tile-labelD {
  color: #079ad9;
  /*background-color: #079ad9;*/
}




