/* The c1022a-radio-container */
.c1022a-radio-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.c1022a-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.c1022a-unchecked, .c1022a-checked {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  margin-right: 40px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.c1022a-checked {
  display: none;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.c1022a-unchecked {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.c1022a-radio-container input:checked ~ .c1022a-checked {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.c1022a-radio-container input:checked ~ .c1022a-unchecked {
  display: none;
}

.c1022a-description textarea {
  border-color: #CECECE;
}

.c1022a-description textarea::placeholder {
  color: black;
}
