.test_cover {
    width: 100%;
    background-size: cover;
    height: auto;
    padding: 0px 0px 2px 0px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}

#questionstatus {
    font-family: 'Patua One', cursive;
    padding: 10px 10px 10px 10px;
    font-size: 25px;
    height: 50px;
}

#quiz{
    padding: 10px 40px 40px 40px;
    border-spacing: 2px;
    font-size: 25px;
}

.question-stlye{
    border-bottom: solid 1px;
    padding: 4px;
}

#title{
    text-align: center;
    padding: 10px 10px 10px 10px;
    font-family: 'Patua One', cursive;
    font-size: 20px;
    width: 100%;
    height: 40px;
    background-color: #fff;
    float: left;
    display: block;
    height: 50px;
}


#cellscontainer > div {
    border: #000 1px solid;
    background-color: #edf1fb;
    float: left;
    display: block;
    width: 45px;
    height: 45px;
    padding: 7px 0 3px;
    text-align: center;
    font: bold 12px 'Patua One', cursive;
    color: #000;
    text-shadow: #fff 0 1px 0;
    cursor: default;
    font-size: 20px;
}

#cellscontainer{
    display: block;
    width: 200px;
    height: 200px;
    padding: 5px;    
}

#displayanswer{
    display: block;
    padding: 5px;
    text-align: center;
    padding: 5px;
}

#next{
    margin-left: auto;
    margin-right: auto;
}

#results{
    text-align: left;
    font-size: 20px;
    font-family: 'Patua One', cursive;
    padding: 5px;
}

/******************CHECKBOX STYLING*****************************************************/
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

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

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

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

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
