#caliContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	height: calc(100vh - 70px);
	width: 100%;
    text-align: center;
	/* overflow: hidden; */
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

div#calibrate {
	height: 300px;
	width: 500px;
	background: #dddddf;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	border-radius: 15px;
}
div#calibrate div.calititle {
	width: 100%;
	padding: 10px;
	background: #90caf9;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-shadow: 0px 1px #00000077;
}
div#calibrate div.content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: max-content;
}
div#calibrate div.content div.description {
	font-size: 12px;
	padding: 10px;
	text-align: center;
}
div#calibrate div.content button#clickBtn {
	width: 50px;
	height: 50px;
	margin: 10px;
	background: #b7b6bb;
	color: #000;
	border: 1.5px solid #939394;
	color: #fff;
	text-shadow: 1px 1px 1px #9f9f9f;
	font-weight: bold;
	cursor: pointer;
}
div#calibrate div.content div.results {
	width: 60%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	color: #000;
	text-align: center;
}
div#calibrate div.content div.results div:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-left: 1.4px #9f9f9f solid;
}
div#calibrate div.content div.results div:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-right: 1.4px #9f9f9f solid;
}
div#calibrate div.content div.results div {
	border: 1.2px #9f9f9f solid;
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
div#calibrate div.footer {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: center;
	align-items: center;
}
div#calibrate div.footer button {
	width: 100%;
	padding: 5px;
	cursor: pointer;
}
div#calibrate div.footer button#startBtn {
	background: #90caf9;
	color: #fff;
	font-size: 16px;
	border: none;
	border-right: 1px solid #fff;
	text-shadow: 0px 1px #00000033;
}
div#calibrate div.footer button:disabled {
    background: grey!important;
    color: lightgrey!important;
    cursor: default;
}