* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Din Pro', Helvetica, Arial, sans-serif; }

html, body {
  margin: 0;
  padding: 0; }

body {
	background: #f3f7f8;
	color: #556272;
}

.container {
  padding: 0 30px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto; }
  @media (max-width: 550px) {
    .container {
      padding: 0 15px; } }
 .container img {
 	max-width: 980px
 }
h1 {
	font-weight: 300;
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 27px;
}
h2
{
	font-weight: 300;
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 34px;	
    font-weight: bold;
}
h3 {
	font-weight: 300;
	font-size: 26px;
    padding-top: 60px;
    padding-bottom: 20px;
    padding-right: 120px;
}
.imgcenter {
	display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
}
#voting_closesIn {
	float: right;
	margin-top: -120px;
	border: 1px solid #ddd;
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: rgba(255,255,255,0.5);
}
#questionTimer {
    font-size: 35px;
    text-align: center;
    width: 100%;
    margin-top: 23px;
    display: block;
    font-weight: 700;
}
.sec {
    font-weight: bold;
    text-align: center;
    width: 100%;
    display: block;
}
.clear {
	clear: both;
}
button {
	background: #959595;
	border: none;
	padding: 10px 30px;
	font-size: 17px;
	color: white;
	border-radius: 3px;
	cursor: pointer;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
button:hover {
	background: #143471;
}
.btn {
	display: block;
	background: white;
	border-radius: 3px;
    padding: 15px 35px;
    margin: 20px 0px;
	-webkit-box-shadow: 0px 2px 0px 0px rgba(225,231,231,1);
	-moz-box-shadow: 0px 2px 0px 0px rgba(225,231,231,1);
	box-shadow: 0px 2px 0px 0px rgba(225,231,231,1);
	cursor: pointer;
	  -webkit-transition: all 0.1s ease-in;
	  -moz-transition: all 0.1s ease-in;
	  -o-transition: all 0.1s ease-in;
	  transition: all 0.1s ease-in;
}
.btn:hover {
	background: #61d0fe;
}
.btn.active {
	background: #61d0fe;
}
.btn i {
	color: white;
	float: right;
	opacity: 0;
}
.btn span {
	float: left;
	width: calc(100% - 60px);
}
.btn span p {
	margin: 7px 0px;
}
.btn:hover span p {
	color: white;
}
.quizcheckbox {
	opacity: 0;
}
input[type=checkbox]:checked ~ span p {
	color: white;
}
input[type=checkbox]:checked ~ i {
	opacity: 1;
}
@media (max-width: 500px) {
	h1 {
		font-size: 22px;
	}
	h3 {
		font-size: 20px;
	}
	#voting_closesIn {
		margin-top: -98px;
		width: 80px;
		height: 80px;
	}
	#questionTimer {
		font-size: 20px;
		margin-top: 22px;
	}
	.sec {
		font-size: 12px;
	}
	.btn {
		padding: 15px 15px;
	}
}