body {
    padding: 0;
    margin: 0;
}
p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 6px;
    color: #434343;
}
h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #434343;
}
h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #434343;
}
textarea {
    height: 112px;
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font:14px/1.55 'Open Sans', sans-serif;
    outline: none;
    text-indent: 8px;
    padding-top: 8px;
    color: #434343;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}
select {
  font: 14px/1.55 'Open Sans', sans-serif;
  font-weight: normal;
  height: 44px;
  width: 100%;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  outline: none;
  text-indent: 8px;
}
input[type="text"] {
    height: 44px;
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    font:14px/1.55 'Open Sans', sans-serif;
    outline: none;
    text-indent: 8px;
    color: #434343;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}
/* The container */
.radio-container {
  display: block;

  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font:14px/1.55 'Open Sans', sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.radio-container input:checked ~ .checkmark {
  background-color: #F69139;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox {
  -webkit-appearance: none;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
  padding: 9px;
  margin-right: 8px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  width: 20px;
  height: 20px;
}
.checkbox:active, .checkbox:checked:active {
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
  outline: none;
}
.checkbox:checked {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
  color: #FFFFFF;
  outline: none;
}
.checkbox:checked:after {
  content: '\2714';
  font-size: 14px;
  position: absolute;
  top: 0px;
  left: 3px;
  color: #F69139;
  outline: none;
}
.checkbox-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding-bottom: 8px;
}
.numbered-radio-container input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.numbered-radio-container label {
  display: inline-block;
  background-color: #FFFFFF;
  padding: 10px 15px;
  font-size: 12px;
  border-radius: 50%;
  margin: 4px 8px;
  cursor: pointer;
}
.numbered-radio-container label:hover {
  background-color: #F69139;
}
.numbered-radio-container input[type="radio"]:checked + label {
    background-color: #F69139;
}
.headers {
  text-align: center;
  margin-bottom: 44px;
  padding: 16px;
}
.headers h1 {
  color: #0060A9;
}
.headers h2 {
  color: #434343;
}
.page-wrapper {
    padding: 0px;
    background-color: #FFFFFF;
    border-radius: 10px;
    color: #2F2F2F;
}
.thank-you {
  text-align: center;
  padding-top: 12px;
}
.question {
    padding-bottom: 12px;
}
.question-two-col {
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
}
.question-two-col .question {
    width: 48%;
}
.question-final {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submit-button {
    background-color: #033E5C;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.submit-button:hover {
    background-color: #033E5C;
}
/* Thank you page */
.thank-you-wrapper {
    padding: 0px 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}