body {
    height: 100%;
    margin: 0;
}
textarea {
    height: 150px;
    width: 100%;
    background: #F5F5F5;
    border: 1px solid #dddddd;
    font:14px/1.55 'Open Sans', sans-serif;
    outline: none;
}

select {
    font:14px/1.55 'Open Sans', sans-serif;
    font-weight: normal;
    height: 44px;
    width: 100%;
    border: 1px solid #F7F8FA;
    background: #F7F8FA;
    outline: none;
    text-indent: 8px;
}
input[type="text"] {
    height: 44px;
    width: 100%;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
    font:14px/1.55 'Open Sans', sans-serif;
    outline: none;
    text-indent: 8px;
}
input[type="number"] {
  height: 44px;
  width: 100%;
  border: 1px solid #F5F5F5;
  background: #F5F5F5;
  font:14px/1.55 'Open Sans', sans-serif;
  outline: none;
  text-indent: 8px;
}
input[type="email"] {
  height: 44px;
  width: 100%;
  border: 1px solid #F5F5F5;
  background: #F5F5F5;
  font:14px/1.55 'Open Sans', sans-serif;
  outline: none;
  text-indent: 8px;
}
button[type="submit"]:disabled {
  background-color: #BBBDBF;
  cursor: auto;
}
button[type="submit"]:disabled:hover {
  background-color: #BBBDBF;
}
h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.75rem;
}
h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
}
h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}
h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95em;
}
.checkbox {
    -webkit-appearance: none;
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    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: #F5F5F5;
    border: 1px solid #F5F5F5;
    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: #F5F5F5;
    outline: none;
}
.checkbox:checked:after {
    content: '\2714';
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: #F69139;
    outline: none;
}
.checkbox-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding-bottom: 8px;
    padding-left: 8px;
}

/* 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;
  }
  
  /* Hide the browser's default radio button */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio-container input:checked ~ .checkmark {
    background-color: #F69139;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .checkmark:after {
    display: block;
  }

.numbered-radio-container input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.numbered-radio-container label {
  display: inline-block;
  background-color: #F5F5F5;
  padding: 10px 15px;
  font-size: 12px;
  border-radius: 50%;
  margin: 4px 12px;
  cursor: pointer;
}
.numbered-radio-container label:hover {
  background-color: #F69139;
}
.numbered-radio-container input[type="radio"]:checked + label {
    background-color: #F69139;
}
  
.navbar {
    padding: 32px 0px 32px 0px;
    max-width: 900px;
    width: 100%;
}
.navbar-image {
    width: 150px;
    margin-left: -16px;
}
.page-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1E365E;
    background: url("https://www.leap.com.au/img/header-pattern.svg") right top no-repeat, linear-gradient(to bottom, #1E365E 35%, #FFFFFF 35%);
}
.page-wrapper-thank-you {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #1E365E;
    background: url("https://www.leap.com.au/img/header-pattern.svg") right top no-repeat, linear-gradient(to bottom, #1E365E 100%, #FFFFFF 100%);
}
.page-wrapper-small {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #1E365E;
    background: url("https://www.leap.com.au/img/header-pattern.svg") right top no-repeat, linear-gradient(to bottom, #1E365E 50%, #FFFFFF 50%);
}
.content-wrapper {
    max-width: 900px;
    border-radius: 5px;
    width: 100%;
    background-color: #FFFFFF;
    margin: 32px;
    margin-bottom: 98px;
    -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 12px 24px -6px, rgba(9, 30, 66, 0.31) 0px 0px 1px;
            box-shadow: rgba(9, 30, 66, 0.25) 0px 12px 24px -6px, rgba(9, 30, 66, 0.31) 0px 0px 1px; 
}
.content-header {
    border-radius: 30px 5px 0px 0px;
    max-width: 900px;
    width: 100%;
    color: #FFFFFF;
}
.content-header h1 {
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}
.content-header h2 {
    font-weight: 300;
    margin-bottom: 5px;
}
.content-body {
    padding: 12px 100px;
}
.first-question {
    margin-top: 12px;
    margin-bottom: 60px;
}
.question {
    margin-top: 52px;
    margin-bottom: 52px;
}
.next-question {
    margin-top: 64px;
    margin-bottom: 64px;
}
.heading {
    font-weight: 400;
    text-align: center;
    margin-bottom: 52px;
}
.indent {
    padding: 0px 52px;
}
.subheading {
    font-weight: bold; 
    padding-right: 8px; 
    font-size: 20px;
    color: #58595B;
    opacity: 0.8;

}
.slide-heading {
    display: flex; 
    flex-direction: row; 
    align-items: center;
    justify-content: center;
}
.thankyou-container {
    padding: 52px 0px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}
.slidecontainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.slide-bottom {
    padding-bottom: 100px;
}

.post-selection {
    display: none;
}
  
.slider {
    -webkit-appearance: none;
    width: 75%;
    height: 15px;
    border-radius: 30px 5px;
    background: #BBBDBF;
    outline: none;
    opacity: 0.6;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-top: 20px;
    margin-bottom: 14px;
}
  
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 50%; 
    background: #F69139 ;
    cursor: pointer;
}
  
.slider::-moz-range-thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F69139;
    cursor: pointer;
}

.slider-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    opacity: 0.8;
}
  
.slider-icon {
    color: #F69139;
    font-size: 28px;
    opacity: 0.7;
}

.question-final {
    margin-top: 100px;
    margin-bottom: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.additional-button-wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submit-button {
    background-color: #F69139;
    color: #FFFFFF;
    font-weight: bold;
    padding: 25px 72px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.submit-button:hover {
    background-color: #F68139;
}


/* Mobile */
@media only screen and (max-width: 600px) {
    .navbar {
        padding: 24px;
        background-color: #1E365E;
    }
    .page-wrapper {
        background: #FFFFFF;
    }
    .page-wrapper-small {
        background: #FFFFFF;
    }
    .content-wrapper {
        margin: 0px 24px;
        margin-bottom: 44px;
        -webkit-box-shadow: none;
        box-shadow: none; 
    }
    .content-header {
        margin-top: 24px;
        padding: 16px;
        color: #333;
    }
    .thank-you-text {
      color: #FFFFFF;
      text-align: center;
    }
    .content-body {
        padding: 16px;
    }
    .indent {
        padding: 0px 12px;
    }
    .first-question {
        text-align: center;
    }
    .question {
        margin-top: 20px;
        text-align: center;
    }
    .next-question {
        text-align: center;
    }
    .slider-icon {
        display: none;
    }
    .submit-button {
        padding: 20px 60px;
    }
}
