:root{
	--main-color: rgb(25,25,25);
	--shadow-main-color: #000;
}

html, body{
	/*height: 100%;*/
	width: 100%;
}

main{
	/*height: 100%;
	width: 100%;
	overflow: hidden;
	padding-bottom: 0;*/
}
body{
	/*font-family: roboto-stan;*/
}

.container-exercicios-fixacao{
	background-color: #f3f3f3;
	border-top: solid 2px #fff;
	padding-bottom: 2em;
}

.containerActivities{
	/*background-color: #fff ;*/
	overflow-y: auto;
	overflow-x: hidden;
	/*overflow: hidden;*/
}

.top_title_activity{
	margin-bottom: 12px !important;
	background-color: rgb(25,25,25);
}

.top_title_activity h1{
	color: #fff;
}

.top_title_activity .py-sm-5{
	padding-top: 1em !important;
	padding-bottom: 0 !important;
}

.top_title_activity .container{
	margin-top: 0 !important;
}

h3{
	/*margin: 1em 1em .5em;*/
    padding-bottom: .5em;
    /*border-bottom: solid 1px #ececec;*/
    /*font-family: roboto-slab;*/
}

.contentActivities{
	position: relative;
	margin-top: 15px;
}

.activity{
	/*border-bottom: solid 1px #ececec;*/
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
	-webkit-transition: all .3s;
}

.activity.active{
	position: relative;
	opacity: 1;
}

.optionsTrueFalse{
	display: flex;
	text-align: center;
	margin-top: 3em;
	justify-content: center;
}

.optionsTrueFalse p{
	position: relative;
	padding: .5em 2em;
	border: solid 3px rgba(0,0,0,0);
	box-shadow: 0px 0px 3px rgba(0,0,0,.3);
	border-radius: 5px;
	margin: .5em;
	width: 200px;
	background-color: rgba(0,0,0,0);
	cursor: pointer;
	transition: all .3s;
	-webkit-transition: all .3s;
}

.optionsTrueFalse p.select{
	border: solid 3px  var(--main-color);
}

.optionsTrueFalse p:hover{
	background-color: #ececec;
}

.optionsTrueFalse p.select.right{
	background-color: #00ad55;
	color: #fff;
}

.optionsTrueFalse p.select.wrong{
	background-color: #c52222;
	color: #fff;
}

.optionsTrueFalse.disabled *{
	pointer-events: none;
}

.containerCheckActivity{
	position: relative;
	text-align: center;
	/*margin: 0em 0 2em 0;*/
	/*border-top: solid 1px #e2e2e2;*/
	text-align: center;
	/*background-color: #f3f3f3;*/
    padding: 0 0 .5em;
    margin: 0 -15px;
}

.containerCheckActivity .timeLineActivities{
	width: calc(100% - 6em);
	height: 1px;
	background-color: #ccc;
	position: relative;
	margin: 1em auto 1.5em;
	display: flex;
	justify-content: space-between;
}

.containerCheckActivity .timeLineActivities .pointTimeLineActivities{
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #ccc;
	transform: translateY(-50%);
	transition: all .2s;
	-webkit-transition: all .2s;
}

.containerCheckActivity .timeLineActivities .pointTimeLineActivities.active{
	width: 11px;
	height: 11px;
	background-color: #1a93f8;
}

.containerCheckActivity p{
	/*font-family: roboto-slab;*/
	text-align: center;
	padding: .5em 2em;
	margin: .5em auto;
	width: 200px;
	background-color: #1a93f8;
	cursor: pointer;
	transition: background-color .3s;
	-webkit-transition: background-color .3s;
	color: #fff;
}

.containerCheckActivity p:hover{
	background-color: #1263a7;
}

.optionMultipleChoice{
	display: flex;
	align-items: center;
	margin: 20px 0;
	cursor: pointer;
}

.optionMultipleChoice *{
	pointer-events: none;
}

.optionMultipleChoice p{
	margin-bottom: 0 !important;
}

.bulletMultipleChoice{
	position: relative;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.bulletMultipleChoice div:nth-of-type(1){
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: solid 1px #a5a5a5;
	transition: all .3s;
	-webkit-transition: all .3s;
}

.bulletMultipleChoice div:nth-of-type(2){
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	width: 0%;
	height: 0%;
	border-radius: 50%;
	background-color:  #d4d4d4;
	transition: all .3s;
	-webkit-transition: all .3s;
}

.optionMultipleChoice .textOptionMultipleChoice{
	width: calc(100% - 30px);
}

.activity[answer*=","] .optionMultipleChoice.select .bulletMultipleChoice div:nth-of-type(1){
	border: solid 3px #1a93f8;
}

.optionMultipleChoice.select .bulletMultipleChoice div:nth-of-type(2){
	width: 50%;
	height: 50%;
}

.optionMultipleChoice.wrong .bulletMultipleChoice:before, .optionMultipleChoice.wrong .bulletMultipleChoice:after{
	content: '';
	position: absolute;
	background-color: red;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%) rotate(45deg);
	width: 3px;
	height: 70%;
	z-index: 2;
	border-radius: 5px;
}

.optionMultipleChoice.wrong .bulletMultipleChoice:after{
	transform: translate(-50% , -50%) rotate(-45deg);
}

.optionMultipleChoice.right .bulletMultipleChoice:before, .optionMultipleChoice.right .bulletMultipleChoice:after{
	content: '';
    position: absolute;
    background-color: green;
    top: 50%;
    left: 60%;
    width: 3px;
    z-index: 2;
    border-radius: 5px;
    transform: translate(-50% , -50%) rotate(35deg);
    height: 60%;
}

.optionMultipleChoice.right .bulletMultipleChoice:after{
	top: 60%;
    left: 35%;
    transform: translate(-50% , -50%) rotate(-35deg);
    height: 35%;
}

.popUpActivities{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	background-color: rgba(255,255,255,0);
	transition: all .3s;
    -webkit-transition: all .3s;
}

.popUpActivities.actived{
	background-color: rgba(255,255,255,.7);
}

.popUpActivities .row{
	justify-content: center;
}
.containerPopUpActivities{
	width: 100%;
	position: relative;
	padding: 2em 2em;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0px 10px 20px rgba(0,0,0,.2);
	transform: scale(0);
	transition: all .3s;
    -webkit-transition: all .3s;
}

.popUpActivities.actived .containerPopUpActivities{
	transform: scale(1);
}

.containerBtnPopUpActivities{
	margin-bottom: 0;
	display: flex;
	justify-content: center;
}

.btnUnderstand{
	color: #fff;
    background-color: var(--main-color);
    box-shadow: 0 3px 0 var(--shadow-main-color);
    padding: .5em 5em;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
}

.btnUnderstand:hover{
	/*background-color: #0a4961;*/
}

.btnFinishActivities, .btnNewActivities{
	color: #fff;
    background-color: var(--main-color);
    padding: .5em 1em;
    border-radius: 5px;
    cursor: pointer;
    width: calc(50% - .5em);
    margin: 0 .5em;
    transition: all .2s;
    -webkit-transition: all .2s;
    margin: 1em auto 0;
    box-shadow: 0 3px 0 var(--shadow-main-color);
    text-shadow: 0px 2px 0 rgba(0,0,0,0.3);
    text-align: center;
}

.btnFinishActivities:hover, .btnNewActivities:hover{
	/*background-color: #0a4961;*/
}

@media (max-width: 576px){
	.containerBtnPopUpActivities {
	    margin-top: 1.5em;
	    text-align: center;
	    margin-bottom: 0;
	    display: flex;
	    flex-direction: column;
	}

	.btnFinishActivities, .btnNewActivities {
		width: 100%;
	}
}

.scoreActivities{
	position: absolute;
	opacity: 0;
	left: 0;
	top: 0;
	transition: all .2s;
    -webkit-transition: all .2s;
}

.scoreActivities.active {
    position: relative;
    opacity: 1;
}

.scoreTotalActivities{
	font-size: 10em;
    text-align: center;
    margin: 0;
    line-height: .8em;
    color:  var(--main-color);
}
.containerScoreActivities{
	width: 100%;
}
.contentStarsActivities{
	width: 50px;
	position: relative;
}

.containerStarsScore{
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.contentStarsActivities img{
	width: 50px;
}
.contentStarsActivitiesScore{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.maskStarsActivities{
	height: 100%;
	width: 0;
	position: relative;
	overflow: hidden;
}

.maskStarsActivities img{
	position: absolute;
	top: 0;
	left: 0;
}

.textScoreActivites{
	font-size: 16px;
	line-height: 1.5em;
	text-align: center;
}




.activity select{
	border-radius: 5px;
	border: solid 3px rgba(0,0,0,0);
	box-shadow: 0px 0px 2px rgba(0,0,0,.3);
	padding: .1em .5em;
	font-weight: 100;
	color: #9a9a9a;
	margin: 0 2px;
	background-color: #fff;
}

.activity select:focus {
    outline: unset;
}

.activity select.right{
	border: solid 3px #00ad55;
	pointer-events: none;
}

.activity select.wrong{
	border: solid 3px #c52222;
	pointer-events: none;
}



.disablePage{
	display: none;
}

.disableBtn{
	opacity: .5 !important;
	pointer-events: none !important;
}

.moveLeft{
	left: -100% !important;
}

.moveRight{
	left: 100% !important;
}

.moveCenter{
	left: 0 !important;
}

.disableTransition{
	transition: unset !important;
	-webkit-transition: unset !important;
}

.true-false-question, .true-false-question .containerV-F{
	display: flex;
}

.true-false-question .containerV-F{
	margin-right: 10px;
}

.true-false-question .containerV-F p{
	margin-bottom: 0;
	width: 30px;
	height: 30px;
	border: solid 1px #a5a5a5;
	color: #1a93f8;
	text-align: center;
	margin-right: 5px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
	transition: all .3s;
}

.true-false-question .containerV-F p.select{
	/*background-color: #a5a5a5;*/
	background-color: #1a93f8;
	border: solid 1px #1a93f8;
	color: #fff;
}

.true-false-question .containerV-F p.right{
	border: solid 1px green;
	background-color: green;
	color: #fff;
}

.true-false-question .containerV-F p.wrong{
	border: solid 1px red;
	background-color: red;
	color: #fff;
}