
h1 {
    font-size: 30px;
}
a {
    color: #FFFFFF;
}
a:hover {
    color: rgb(36, 56, 97);
}
textarea {
    height: 150px;
    width: 100%;
    background: #F5F5F5;
    border: 1px solid #dddddd;
    font: 16px/1.55 'Open Sans', sans-serif;
    outline: none;
}

select {
    font: 16px/1.55 'Open Sans', sans-serif;
    font-weight: normal;
    height: 28px;
    width: 100%;
    border: 1px solid #F7F8FA;
    background: #F7F8FA;
    outline: none;
    text-indent: 8px;
}

input[type="text"] {
    height: 28px;
    width: 100%;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
    font: 16px/1.55 'Open Sans', sans-serif;
    outline: none;
    text-indent: 8px;
}
input[type="date"] {
    height: 28px;
    width: 100%;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
    font: 16px/1.55 'Open Sans', sans-serif;
    outline: none;
    text-indent: 8px;
}

input[type="number"] {
    height: 28px;
    width: 100%;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
    font: 16px/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;
}

.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;
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    width: 15px;
    height: 15px;
}

.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: 16px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: rgb(36, 56, 97);
    outline: none;
}

.checkbox-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding-bottom: 8px;
    color: #ffffff;
    position: relative;
}
input[type="checkbox"]{
    position: absolute;
    top: 0;
	left:0;
}
label.checkbox-label span {
    position: relative;
	top: 0;
    left: 35px;
}
/* The container */
.radio-container {
    display: block;
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    cursor: pointer;
    font: 18px/1.55 'Open Sans', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    color: #ffffff;
}

/* 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: 24px;
    width: 24px;
    background-color: #eee;
    border-radius: 0%;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked~.checkmark {
    background-color: rgb(36, 56, 97);
}

/* 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;
}
.submit-button {
    background-color: rgb(36, 56, 97);
    color: #FFFFFF;
    font-weight: bold;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.page-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.section {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
}
.form-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(54, 124, 190);
}
.header {
    width: 60%;
    display: flex;
    text-align: center;
    align-self: center;
    align-items: center;
    padding: 20px 0px;
    color: #ffffff;
}
.header-submission {
    width: 100%;
    display: flex;
    text-align: center;
    align-self: center;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
    color: #ffffff;
}
.form {
    width: 70%;
}
.form-row {
    padding-bottom: 16px;
}
.question-label {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
}
.skin-selection {
    padding-top: 8px;
    padding-left: 20px;
}
.button-wrapper {
    display: flex;
    justify-content: center;
}

/* Mobile */
@media only screen and (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
}