@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
	box-sizing:border-box;

}

body{
	font-family:Verdana, Geneva, sans-serif;
	/*counter-reset:points;*/
}

section.passatempo-caca-ternos{
	width: 80%;
	padding: 60px 0px 20px 0px;
	margin: auto;
	/*background-color: #2b7cb4;*/
	border: 0.5px solid rgba(255,255,255,0.5);
	background-color:rgba(43,124,180,0.8);
	/*display:flex;*/
	/*flex-direction: row;*/
	/*flex-wrap: wrap;*/
	/*justify-content: space-around;*/
	border-radius: 8px;
	box-shadow: 2px 2px 10px black;
	background-image:	url(../imagem-13-jogos-matematicos/000-fundo-jogos-matematicos-100px100px.png);
	background-repeat: no-repeat;
	background-position: right top;	

}


.meu-checkbox{
	/*display:none;*/
	display:block;
	width:30px;
	height:30px;
}


/*CONTADOR*/


.counter-reset{
   counter-reset: checkboxcounter;
}

/*.meucheckbox{
   width: 20px;
   height: 20px;
   margin-right: 10px;
   appearance: checkbox;
   -moz-appearance: checkbox;
   -webkit-appearance: checkbox;
}*/

.counter-print::after{
   content: "Total: " counter(checkboxcounter);
   position: absolute;
   font-size: 30px;
   line-height: 60px;
   text-align: center;
   display: block;
   width: 200px;
   height: 60px;
   margin:-1210px 0px 0px 10px;
   background-color:#FF0;
   box-shadow: 2px 2px 10px black;
   border-radius: 4px;
}

.meu-checkbox:checked{
   counter-increment: checkboxcounter;
}

/*CONTADOR*/