.quiz-title > h1 {
  font-size: 1.7em;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  color: #525fe1;
  margin-bottom: 30px;
  margin-top: 10px;
}
#btnStartQuiz {
  background-color: #fff;
  color: #525fe1;
  border: 1px solid #525fe1;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  padding: 0 20px;
  margin: 10px 0;
}
.btnSendQuestion {
  background-color: #fff;
  color: #525fe1;
  border: 1px solid #525fe1;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  padding: 0 20px;
  margin: 10px 0;
}

.btnNextQuestion
{
    background-color: #fff;
    color: #525fe1;
    border: 1px solid #525fe1;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0 20px;
    margin: 10px 0;
}

#btnSendQuiz
{
    background-color: #fff;
    color: #525fe1;
    border: 1px solid #525fe1;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0 20px;
    margin: 10px 0;
}

.btnResetQuiz
{
    background-color: #fff;
    color: #525fe1;
    border: 1px solid #525fe1;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0 20px;
    margin: 10px 0;
}

.navigation-checked{
  background-color: #525ee17e !important;
  color: #fff !important;
}

.navigation-current {
  background-color: #525fe1;
  color: #fff;
}
.question_checked {
  background-color: #525fe1!important;
  color: #fff!important;
}
.quiz-footer-content {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.quiz-timer {
  background-color: #fff;
  color: #525fe1;
  border: 1px solid #525fe1;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  padding: 0 20px;
  margin: 10px 0;
}

.quiz-result {
  display: none;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  padding: 0 20px;
  margin: 10px 0;
}
.btnNextQuestion {
  display: none;
}
.quiz {
  display: none;
}

.question {
  display: none;
}
#correctAnswers{
	color: green;
	padding-right:8px;
}
#wrongAnswers{
	color: red;
	padding-right:8px;
}
.correctContainer{
	display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    border: 1px solid green;
    border-radius: 8px;
    justify-content: center;
    padding: 15px 8px;
    width: 32%;
}
.wrongContainer{
	display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    border: 1px solid red;
    border-radius: 8px;
    justify-content: center;
    padding: 15px 8px;
    width: 32%;
}
.timingG{
	display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    border: 1px solid darkgray;
    border-radius: 8px;
    justify-content: center;
    padding: 15px 8px;
    width: 32%;
}
.resultContainerTotal{
	    width: 65%;
	    display: flex;
	
    flex-wrap: wrap;
}
.mainfinalResult{
	display:flex;
	justify-content: center;
}
.graphicResult{
		width: 50%;
    min-height: 200px;
    max-width: 200px;
	}
@media(max-width: 1024px){
	.quiz-navigation{
		display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: scroll;
	}
	.btn-question-navigation {
    background-color: #fff;
    color: #525fe1;
    border: 1px solid #525fe1;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0px 3.88vw;
    margin: 10px 3px;
}
	.resultContainerTotal{
		align-items: center;
    justify-content: center;
    flex-direction: column;
		width:50%;
	}
	.timingG, .correctContainer, .wrongContainer{
		width:80%;
	}
	.quiz-avaliation .submitAvaliation{
		margin-left:0px!important;
	}
}
@media(min-width: 1024px){
	.quiz-navigation{
	display:flex;
	flex-wrap: wrap;
    justify-content: center;
}
	.btn-question-navigation {
 background-color: #fff;
    color: #525fe1;
    border: 1px solid #525fe1;
    height: 28px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0 5px;
    margin: 10px 3px;
    width: 35px;
}
	.resultContainerTotal{
		align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
	}

}