.debriefSurvey-radio-input-label {
  cursor: pointer;
  user-select: none;
}

.debriefSurvey-radio-input-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.debriefSurvey-label-value {
  height: 48px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  border-radius: 8px;
  font-size: 28px;
  font-weight: bold;
}

.debriefSurvey-radio-input-label input[type="radio"]:hover ~ .debriefSurvey-label-value {
  background-color: #5cbbdd;
}

#submitSurvey input[name="additionalComments"] {
  height: 110px;
  border: 1px solid #4A4A4A;
  border-radius: 8px;
}

#submitSurvey textarea[name="additionalComments"] {
  display: block;
  height: 110px;
  width: 90%;
  margin: 10px auto;
  border: 1px solid #4A4A4A;
  border-radius: 8px;
  padding: 10px;
  font-size: 18px;
}

#submitSurvey button[type="submit"] {
  display: block;
  margin: 0 auto;
  background: #0362DD;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  border: 0px;
  text-transform: uppercase;
  padding: 14px 34px;
  margin: 0 33px 0 auto;
  position: relative;
  z-index: 3;
}

#submitSurvey button[type="submit"]:hover {
  background-color: #1A4278;
}

#submitSurvey button[type="submit"]:disabled {
  background-color: #F0F2F5;
  color: #737373;
  cursor: not-allowed;
}

.input-labels-container > * {
  flex-basis: 25%;
}

.go-previous-survey-question {
  --button-size: 15px;
  --border-width: 3px;

  height: var(--button-size);
  width: var(--button-size);
  background: transparent;
  border-color: black;
  border-bottom-left-radius: 4px;
  border-bottom-width: var(--border-width);
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: var(--border-width);
  rotate: 45deg;
}

.go-previous-survey-question:focus {
  outline: none;
}

.go-previous-survey-question:disabled {
  filter: opacity(0.1);
}

.color-dark-blue {
  color: #1A4278;
}

.volunteerBtn {
  outline: none;
  border: 2px solid;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  background-color: transparent;
  border-radius: 8px;
}

.volunteerBtn[value="true"] {
  border-color: #0E870C;
  color: #0E870C;
}

.volunteerBtn[value="true"]:hover {
  background-color: #E3F1EA;
}

.volunteerBtn[value="false"] {
  border-color: #B50203;
  color: #B50203;
}

.volunteerBtn[value="false"]:hover {
  background-color: #F3E1E1;
}

.submit-survey-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  width: 90%;
}

.submit-survey-container > div:first-child {
  grid-column: 2 / 3;
}
