@charset "iso-8859-1";
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
	margin:0;
	padding:0;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #4e4e4e;
}

a {
	text-decoration: none;
	color: #000000;
}

a:hover {
	text-decoration: underline;
}

h1 {
	color:#ED3237;
}

#container {
	width:100%;
}

#body {
	width:100%;
}

#conteudo {
	padding:20px;
	max-width:800px;
}

input[type="radio"] {
	height:25px;
	width:25px;
}

.box {
	border:1px solid #B5B5B5; 
	padding:20px;
	background-color:#F7F7F7;
	margin-top:30px;
	margin-bottom:15px;	
}

.linha_voto {
	border-bottom:1px solid #B5B5B5;
}

.inputtexto {
	padding:5px;
	font-size:16px;
}

.btconfirmar {
	background-color:#0D9246;
	border:none;
	padding:20px;
	cursor:pointer;
	color:#FFFFFF;
	display:inline-block;
	font-weight:bold;		
}

.btnormal {
	background:#1D6FB8;
	border: none;
	display:inline-block;
	cursor:pointer;
	color:#FFFFFF;
	font-family:"Open Sans", Arial, sans-serif;
	font-weight:bold;
	padding:12px 25px 12px 25px;
	text-decoration:none;
}

/* Celular retrato */
@media only screen and (max-device-width : 667px) and (orientation : portrait) {	
	
	body {
		 font-size:35px;
	}
	
	.btconfirmar {
		font-size:40px;
	}
	
	.btnormal {
		font-size:35px;
	}
	
	input[type="radio"] {
		height:50px;
		width:50px;
	}
	
	select {
		 font-size:35px;
	}

	
}

/* Celular paisagem */
@media only screen and (max-device-width : 667px) and (orientation : landscape) {

	body {
		 font-size:20px;
	}

	.btconfirmar {
		font-size:20px;
	}
	
	.btnormal {
		font-size:20px;
	}
	
	input[type="radio"] {
		height:30px;
		width:30px;
	}

}

/* Tablets e desktops */
@media only screen and (min-device-width : 667px) {
	
	body {
		 font-size:16px;
	}
}