textarea {
  width:99%;
  padding:15px;
  border:1px solid var(--lighterCoral);
  font-size:14px;
  font-weight: 300;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type="text"].expPayInput {
  width:99%;
  padding:15px;
  border:1px solid var(--lighterCoral);
  font-size:14px;
  font-weight: 300;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type="range"].light {
  height:auto;
  background: none;
  position: relative;
  z-index: 1;
  margin-left:0px;
  transition: all 0.2s ease-in-out;
  width: 100%;
  max-width: 720px;
  left: 50%;
  transform: translate(-50%, 0);
}
input[type="range"].light.active {
  border-top: 2px solid var(--coral);
  border-radius: 2px;
  border-left: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  width: calc(100% - 4px);
}
input[type="range"].light.active.min {
  border-top: 2px solid var(--coral);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-left: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  width: 100%;
  max-width: 720px;
  left: 50%;
  transform: translate(-50%, 0);
}
input[type=range].light.active.min::-webkit-slider-runnable-track {
  background:#f9edea;
}
input[type=range].light::-webkit-slider-runnable-track {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom:none;
  background: #f9edea;
  border-radius: 0px;
  width:100%;
  height:20px;
}
input[type=range].light::-webkit-slider-thumb {
  height: 26px;
  width: 26px;
  border-radius:4px;
  margin-top: -3px;
  box-shadow: -8px 2px 12px -3px rgba(0,0,0,0.24);
  background-color: var(--white);
  background-image: url(/static/images/slider-thumb-coral.png);
}

.earlySettlementFormItemContainer {
  display: none;
}
.earlySettlementFormItemContainer#earlySettlementForm-whatToDo {
  display: block;
}

.checkboxItemContainer {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
  background: var(--white);
  padding:25px 2px 25px 52px;
  border-radius: 5px;
  border:1px solid var(--lighterCoral);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.1s ease-in-out;
}
.checkboxItemContainer:hover {
  border:2px solid var(--coral);
}

.qLabel {
  font-size:16px;
  font-weight: 400;
  margin-block-start: 0.7em;
  margin-block-end: 0.7em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* Hide the browser's default checkbox */
.checkboxItemContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 22px;
  left: 15px;
  height: 25px;
  width: 25px;
  background: var(--lighterCoral);
  border-radius: 4px;
}
.check.button {
  position: absolute;
  top: 33px;
  left: 15px;
  height: 25px;
  width: 25px;
  border-radius: 4px;
  background: var(--white);
  border:1px solid var(--lighterCoral);
}
.check.button > .codeTick {
  display: none;
  transform: rotate(45deg);
  height: 14px;
  width: 6px;
  top: -27px;
  border-bottom: 3px solid var(--coral);
  border-right: 3px solid var(--coral);
  margin-top: 1px;
}

/* On mouse-over, add a grey background color */
.checkboxItemContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxItemContainer input:checked ~ .checkmark {
  background: var(--coral);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxItemContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxItemContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.multipleChoice > label {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  width:100%;
  box-sizing: border-box;
  background: var(--white);
  border-radius: 5px;
  border:1px solid var(--lighterCoral);
  padding:20px 2px 30px 14px;
  height: auto;
  margin:5px 0;
  color:black;
  font-weight: 300;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.1s ease-in-out;
}
.multipleChoice.fourth > label {
  text-align: center;
  margin:0;
  padding:25px 2px;
}

.multipleChoice > label > input {
  width:0px;
  height:0px;
  visibility:hidden;
  padding-right: 20px;
}
.multipleChoice.fourth > label > input {
  display: none;
}
.multipleChoice > label > input[type='radio']:after {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 7px;
  background: var(--white);
  border:1px solid var(--lighterCoral);
  position: relative;
  display: inline-block;
  visibility: visible;
}
.multipleChoice.fourth > label > input[type='radio']:after {
  visibility: hidden;
}

.multipleChoice > label > input[type='radio']:checked:after {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: relative;
  background: var(--coral);
  border:7px solid var(--white);
  box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.15);
  box-sizing: border-box;
  display: inline-block;
  visibility: visible;
}
.multipleChoice > label > span {
  margin-left:30px;
}
.multipleChoice.fourth > label > span {
  margin-left:0px;
}
.multipleChoice.fourth > label {
  width: calc(100% - 8px);
  margin:0 4px 8px 0px;
}

.multipleChoice > label.multipleChoiceItemActive, div.multipleChoiceItemActive {
  border: 2px solid var(--coral);
}

.sliderContainer {
  margin:20px 0;
  background:none;
  border-radius: 6px;
}

#setRepayAmountBtn.secondaryButton {
  padding:40px 2px 20px 14px;
  margin-top:-33px;
  transition: all 0.1s ease-in-out;
}
#setRepayAmountBtn.secondaryButton.active {
  border-bottom: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
  padding:40px 2px 25px 14px;
}
form#earlySettlementForm > #earlySettlementForm-whatCouldWeHaveDoneDifferent {
  display: none;
}

#sourceOfFunds-bank-subQuestions, #sourceOfFunds-salary-subQuestions {
  display:none;
  width: 100%;
  margin: 5px auto 0;
  zoom: 0.95;
  border: 1px solid var(--grey);
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: 5px;
}

form#earlySettlementForm select {
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
  width: 95%;

}

.selectWarning {
  display: none;
  border: 1px solid #fc7a74;
  background: orange;
  margin: 15px;
  padding: 15px;
}