svg {
	pointer-events: none;
}

/* Demo 1 */
.drawings {
	position: relative;
}

.illustration {	
	opacity: 0; position: absolute; top: 0; right: 0;
}

.show {
	opacity: 1;
}

.hide {
	opacity: 0;
}

.line-drawing,
.illustration {
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.line-drawing path {
	fill: none;
	stroke: rgb(224, 141, 15);
	stroke-width: 3;
}

path.line-round {
	stroke-linecap: round;
}

path.stroke-medium {
	stroke-width: 2;
}

path.stroke-thin {
	stroke-width: 1;
}


.fade-image {  
	-webkit-animation: fadein 1.8s ease 1 normal;
		-moz-animation: fadein 1.8s ease 1 normal;
 }
 
 @-webkit-keyframes fadein {
	 0% { opacity: 0; }
	 80% { opacity: 0; }
	 100% { opacity: 1; }
 }
 