@CHARSET "UTF-8";

#addTestIntro {
	width: 540px;
	background-color: white;
	overflow: hidden;
}

#addTestIntro .title {
	font-size: 1.25em;
	text-shadow: none;
	line-height: initial;
	padding: 6px 0 0 16px;
}

#addTestIntro .oneTest {
	width: 50%;
	float: left;
	position: relative;
	overflow: hidden;
}

#addTestIntro .oneTest:after {
	clear: both;
	content: '';
	display: block;
}

#addTestIntro .oneTest .content {
	border: 1px solid #e4e4e4;
	padding: 20px;
	margin: 10px;
	min-height: 100px;
	background: #333;
	position: relative;
	cursor: pointer;
	transition: all 200ms ease-in-out;
}

#addTestIntro .oneTest .content .testName {
	color: #fff;
	position: absolute;
	font-size: 18px;
	line-height: 1.3;
	bottom: 20px;
}

#addTestIntro .oneTest.physicalCondition .content {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../../images/tests/physical.png") no-repeat center;
}

#addTestIntro .oneTest.physicalCondition:hover .content {
	background: linear-gradient(rgba(255, 134, 0, 0.7), rgba(255, 134, 0, 0.7)), url("../../../images/tests/physical.png") no-repeat center;
}

#addTestIntro .oneTest.stressProfile .content {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../../images/tests/stress.png") no-repeat center;
}

#addTestIntro .oneTest.stressProfile:hover .content {
	background: linear-gradient(rgba(101, 73, 157, 0.7), rgba(101, 73, 157, 0.7)), url("../../../images/tests/stress.png") no-repeat center;
}

#addTestIntro .oneTest.healthScore .content {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../../images/tests/healthScore.png") no-repeat center;
}

#addTestIntro .oneTest.healthScore:hover .content {
	background: linear-gradient(rgba(29, 157, 213, 0.7), rgba(29, 157, 216, 0.7)), url("../../../images/tests/healthScore.png") no-repeat center;
}

#addTestIntro .oneTest.quickTesting .content {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../../images/tests/shortTesting.png") no-repeat center;
}

#addTestIntro .oneTest .tag {
	position: absolute;
	top: 25px;
	right: -24px;
	z-index: 1;
	background: #fff;
	transform: rotate(39deg);
	font-size: 13px;
	font-weight: 300;
	padding: 10px 36px;
}

#addTestIntro .test-select-content {
	margin: 20px 10px 10px 10px;
	float: none;
}

#addTestIntro .test-select-content:after {
	clear: both;
	content: '';
	display: block;
}

#addTestIntro .link {
	color: #039be5;
	cursor: pointer;
	text-align: center;
	line-height: 32px;
	border-top: 1px solid #e4e4e4;
	padding-top: 12px;
	margin-bottom: 4px;
}

@media only screen and (max-width: 600px) {
	#addTestIntro {
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		top: 0;
		overflow-y: auto;
		height: 100%;
		background: #fff;
	}
	#addTestIntro .test-select-content {
		float: none;
	}
	#addTestIntro #test-tip {
		display: none;
	}
}