/* PERSONALITY EXAM CSS file. */
/*----------------------------*/


.bodyDefaultClass {
    height: 650px;
    
    background-color: #bbe1fa;  
    border: 0px solid black;
}

/*--GAME TITLE--*/
.gameTitleWrapper{
    box-sizing: border-box;
    width: 810px;
    height: 120px;
    line-height: 100px; /*line height must equal height to keep text vertically centered*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    border: 0px solid black;
    
    text-align: center;
    overflow: hidden;
}

.gameTitleText{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    padding: 4px;
    padding-left: 15px;
    padding-right: 15px;
    
    font-size: 58px;
    text-decoration: underline;
    font-weight: bold;
    font-family: Georgia, Arial, sans-serif;
    color: black;
    
    line-height: 1.1;
}

/*INTRODUCTION*/
.introduction{
    margin: 20px;
    background-color: #d6f5f5;
    border: 3px solid black;
    border-radius: 0px;
    padding: 4px;
    
    font-size: 24px;
}

/*ENTRY FORM AREA*/

.entryFormWrapper{
    width: 600px;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    background-color: #99c2ff;
    border: 12px ridge black;
    
    overflow: auto;
}

.submitButtonClass{
    width: 130px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: lightgray;
    border: 4px solid black;
    border-radius: 16px;
    
    font-size: 28px;
    text-align: center;
    
    cursor: pointer;
}

.entryList{
    box-sizing: border-box;
    width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 14px;
    padding-top: 20px;
    background-color: #d6f5f5;
    border: 3px solid black;
    border-radius: 18px;
}

.input{
    font-size: 40px;
}

/*CUSTOM BUTTONS*/

/* The container */
.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;
}

/* Hide the browser's default radio button */
.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: #bfbfbf;
    border: 2px solid black;
    border-radius: 50%;
}

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

/* 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;
}

/*PROGRESS BAR*/
#progressBar {
    width: 80%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid black;
    background-color: #ddd;
}

#progressSlider {
    width: 0%;
    height: 30px;
    background-color: #04AA6D;
    text-align: center;
    line-height: 30px;
    color: white;
}

/*progress text*/
.progressText{
    margin-top: 6px;
    
    opacity: 0%;
    text-align: center;
    font-size: 28px;
    font-family: sans-serif;
}

/*GENERIC CLASSES*/

/*ANIMATIONS*/




/**/
/**/
/**/









