
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}


html, body{
	height: 100%;
}
.container{
	padding: 0px 15px;
}
.question{height: 403px;}
.result-container{margin-left: 40%;margin-top:1%; color:#684B68;}
.logout{padding-top:100px;}
.next{float: right;}
.answer{color:green;font-weight: 300;font-size: larger; }
.result{height: 452px;}
#timer{ float:right;padding: 5px 20px 0 0;}

.vh-center{
	min-height: calc(100vh - 190px);
	height: auto;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	margin: 15px 0px;
	justify-content: center;
}

.error {
	color: #B94A48;
}
.form-horizontal {
	margin-bottom: 0px;
}
.hide{display: none;}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-success {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}
.btn-info {
	color: #fff;
	background-color: #04a9ff;
	border-color: #04a9ff;
}
.text-center{
	text-align: center;
}

.question-container{
	max-width: 900px;
	margin: 0px auto;
}

.form-group{
	display: block;
	width: 100%;
	margin: 5px 0px;
}
.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
input[type="radio"]{
	margin-right: 10px;
}
.dflex{
	display: flex;
}
.w100{
	width: 100%;
}

.results-container .left, .results-container .right{
	width: 100%
}
.results{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.mtb-1{
	margin-top: .5rem;
	margin-bottom: .5rem;
}


.form-group.has-error .help-block{
	color: #ff2424;
}
.form-group.has-success .help-block{
	color: #095236;
}
.mb-10{
	margin-bottom: 10px;
}
input, select, textarea, option, button {
	font-family: inherit !important;
}
.img-responsive{
	width: 100%;
}

@media only screen and (min-width: 600px) {
	.results-container{
		max-width: 600px;
		margin: 0px auto; 
	}
	.results-container .left, .results-container .right{
		width: 50%;
	}
}