h1, h1, h3, h4, h5, p {
	font-family: 'Open Sans', sans-serif;;
}

#header {
    padding-top: 10px;
    padding-bottom: 20px;
}

.logo img {
	max-width: 350px;
}

.headline {
	padding: 3rem 1.5rem;
    text-align: center;
}

/* Choose One CSS based on bg image */
#quiz-container{
	background-image: url('../images/quiz-banner-blue.jpg');
	background-size: cover;
    background-color: #1f689e;
}

.quiz-section {
    max-width: 960px;
    margin: 0 auto;
    background-color: #000000ab;
    min-height: 500px;
    color: #fff;
}

.quiz-form-container {
    padding: 20px;
}

.input-container{
	/* padding: 10px 10px; */
}

label {
    width: 100%;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border: 3px solid #0091ff;
    border-radius: 10px;
    transition: 0.2s;
    background-color: #005ca2;
}

input[type="radio"], input[type="checkbox"] {
    vertical-align: middle;
    height: 20px;
}

label>div:first-child {
    float: left;
    width: 5%;
}

label>div:nth-child(2) {
    float: left;
    width: 95%;
}

label:hover {
    background-color: #ffb500 !important;
    border-color: #c58d02 !important;
    color: #000 !important;
}

#first-section{
	text-align: center;
    padding: 20px;
}

#first-section button, .modal-body button[type="submit"]{
	background-color: #6fca00;
    border: 2px solid #4c8804;
    transition: 0.3s;
}

#first-section button:hover, .modal-body button[type="submit"]:hover {
    background-color: #64b502;
    border-color: #3e7101;
}

/* Custom Modal CSS */

input[type="text"] {
    height: 50px;
    border: 2px solid #eaeaea;
}

p.privacy {
    font-size: 12px;
    font-style: italic;
    color: #777777;
    margin-top: 5px;
}

button[type="submit"] {
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
    background-color: #6fca00;
    border: 2px solid #4c8804;
}

.next, .ch-next {
    background-color: #6fca00;
    border: 2px solid #4c8804;
    transition: 0.3s;
    font-size: 1.5em;
    width: 100%;
}

.next:hover, .ch-next:hover, button[type="submit"]:hover{
    background-color: #64b502;
    border-color: #3e7101;
}

.quiz-question:first-child {
    display: block;
}

.quiz-question {
    display: none;
    padding: 5px 15%;
    margin-bottom: 20px;
}

.err_msg, .error_msg {
    font-size: 12px;
    padding: 5px 10px;
}

.ch_box .next {
    display: inline-block;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 1.75rem auto;
    }
}

@media only screen and (min-width: 768px){
	#first-section button, .modal-body button[type="submit"]{
		width: 100%;
	    font-size: 25px;
	    font-family: 'Open Sans', sans-serif;
	    font-weight: 600;
	}

    .next-back-btn {
        text-align: right;
    }

    .err_msg {
        width: 80%;
    }

}

@media only screen and (max-width: 767px){
    .quiz-form-container {
        padding: 20px 20px;
    }

    .quiz-question{
        padding: 5px;
    }

    label>div:first-child {
        margin-right: 10px;
    }

    label>div:nth-child(2) {
        width: 90%;
    }
}