#questions .element
{
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

#questions .question
{
	position: relative;
	cursor: pointer;
	padding: 10px 40px;
	margin-left: 50px;
	font-size: 1.3em;		
	z-index: 2;

	background: #cecece; /* Old browsers */
	background: -moz-linear-gradient(left, #cecece 0%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #cecece 0%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #cecece 0%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#cecece', endColorstr = '#ffffff', GradientType = 1); /* IE6-9 */
}

#questions .question::before, #questions .question::after
{
	position: absolute;
	width: 100%;
	height: 50%;	
	left: 0;
	content: "";
	z-index: -1;
	
	background: #cecece; /* Old browsers */
	background: -moz-linear-gradient(left, #cecece 0%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #cecece 0%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #cecece 0%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#cecece', endColorstr = '#ffffff', GradientType = 1); /* IE6-9 */
}

#questions .question::before
{
	top: 0;
	transform: skewX(45deg);
	transform-origin: bottom left;
}

#questions .question::after
{
	top: 50%;
	transform: skewX(-45deg);
	transform-origin: top left;
}

#questions .answer
{
	display: none;
	position: relative;
	top: -10px;
	max-width: 1368px;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 80px;
	padding: 10px 30px;
	border: 1px solid #01a0e2;
	font-size: 1.2em;
	z-index: 0;
}

#questions .visible-answer
{
	display: block;
	position: relative;
	max-height: 0;
	max-width: 1368px;
	top: -25px;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 80px;
	padding: 10px 30px;
	transition: max-height 0.2s ease-in, top 0.4s linear, opacity 0.2s ease-in;
	border-left: 2px solid #01a0e2;
	font-size: 1.2em;
	z-index: 1;
	overflow: hidden;
	opacity: 0;
}

@media only screen and (max-width: 800px)
{
	#questions .answer, #questions .visible-answer
	{
		font-size: 1em;
		line-height: 20px;
		padding: 5px;
		margin-left: 5px;
	}

	#questions .question
	{
		font-size: 1.1em;
		padding: 10px;
		margin-left: 5px;
	}

	#questions .question::before, #questions .question::after
	{
		display: none;
	}
}

@media only screen and (max-width: 570px)
{

	#questions .question, #questions .answer, #questions .visible-answer
	{
		margin-left: 0;
	}
}