/*BASICO + TITULO DO INFOGRAFICO*/

* {
	margin: 0;
	padding: 0;
}

#wrapper {
	min-width: 320px;
	max-width: 640px;
	width: 100%;
	height: auto;
	position: absolute;
	overflow: hidden;
	font-family: 'Source Sans Pro', sans-serif;
	color: #363636;
}

#infographic-title {
	position: relative;
	width: 100%;
}

#infographic-title h1 {
	/*    width: 100%;*/
	/*    display: inline-block;*/
	position: relative;
	transform: translatex(-50%);
	left: 50%;
	-ms-transform: translatex(-50%);
	/* IE 9 */
	-webkit-transform: translatex(-50%);
	/* Chrome, Safari, Opera */
	font-size: 1.1em;
	font-family: 'Oswald';
	text-transform: uppercase;
	color: white;
	position: relative;
	background: rgba(10, 115, 204, 1);
	padding: 8px 12px;
	text-align: center;
}


/*CONTEUDO DO INFOGRAFICO*/

#infographic-content {
	padding-top: 4px;
/*	max-height: 500px;*/
	overflow: scroll;
}


/*********** se estiver INativo **********/

.phase-item {
	clear: both;
}

.phase-header {
	overflow: hidden;
}

.phase-header:hover {
	cursor: pointer;
}

.phase-number {
	width: 14%;
	text-align: center;
	font-size: 1.5em;
	font-family: 'Oswald';
	font-weight: bold;
	color: white;
	padding: 8px 0;
	float: left;
	background: rgba(128, 182, 229, 1);
    transition-property: all;
    transition-duration: .3s;
}

.phase-number .etapa-label {
	font-size: .5em;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: -5px;
}

.phase-info {
	width: 85%;
	float: right;
	padding: 8px 0;
	font-family: 'Oswald';
	background: rgba(255, 255, 255, 1);
	border-top: solid 4px rgba(128, 182, 229, 1);
	height: 100%;
	padding-left: .5em;
	box-sizing: border-box;
    transition-property: all;
    transition-duration: .3s;
}

.phase-info h2 {
	font-size: .9em;
	font-weight: normal;
	color: rgba(128, 182, 229, 1);
}

.phase-info h2.data-sem-titulo {
	font-size: 1.5em;
	line-height: 50px;
	color: #053a66;
}

.phase-info h1 {
	font-size: 1.2em;
	color: #053a66;
	letter-spacing: .03em
}

.phase-content {
	padding: 15px 10px;
	display: none;
}


/*********** se estiver ativo **********/

.active-phase .phase-number {
	text-align: center;
	font-size: 24px;
	font-family: 'Oswald';
	font-weight: bold;
	color: white;
	padding: 8px 0;
	float: left;
	background: rgba(10, 115, 204, 1);
}

.active-phase .phase-info {
	background: rgba(10, 115, 204, 1);
	border-top: none;
}

.active-phase .phase-info h2 {
	font-weight: normal;
	color: #80b6e5;
}

.active-phase .phase-info h2.data-sem-titulo {
	color: white;
}

.active-phase .phase-info h1 {
	font-size: 1.2em;
	color: #FFF;
	letter-spacing: .03em
}

.active-phase .phase-content {
	display: block;
}


/*********** *************** **********/

.phase-content ul {
	font-size: 1.1em;
	line-height: 1.6em;
}

.phase-content ul li {
	margin-bottom: 10px;
}

.phase-content ul li::before {
	content: "• ";
}

.phase-content h3{
    font-size: 14px;
    padding-bottom: 5px;
    color: 8a8a8a;
    text-transform: uppercase;
    color: rgba(10, 115, 204, 1);
}

.phase-person {
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
}

.phase-content .person-pic {
	width: 5em;
	height: 5em;
	float: left;
	background-image: url(avatar.jpg);
	background-size: cover;
}

.phase-content .person-pic img {
	display: none;
}

.phase-content .person-info {
	float: left;
	max-width: 70%;
	padding-left: .5em;
	box-sizing: border-box;
}

.phase-content .person-info .person-name {
	font-weight: bold;
	font-size: 1.1em;
	margin-top: .2em;
}

.phase-content .person-info .person-work {
	font-size: .9em;
	color: #9c9c9c;
}

@media screen and (min-width: 600px) {
	#infographic-title h1 {
		font-size: 1.6em;
	}
	.subsection h1 {
		font-size: 1.4em
	}
	.main-facts .fact {
		width: 33%;
		float: left
	}
	.phase-info {
		width: 89%;
	}
	.phase-number {
		width: 10%;
	}
	.phase-person {
		width: 48%;
		margin-right: 1%;
		float: left;
	}
	#infographic-content {
		padding-top: 4px;
		max-height: 700px;
		overflow: scroll;
	}
}

@media all and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
	body {
		font-size: 24px;
	}
	#wrapper {
		max-width: 1280px;
	}
	#infographic-content {
		padding-top: 4px;
		max-height: 1200px;
		overflow: scroll;
	}
	.phase-person {
		width: 98%;
		margin-right: 1%;
		float: left;
	}
	.active-phase .phase-number {
		font-size: 54px;
	}

}