li {
	list-style-type: lower-greek;
}

.reveal .clear {clear:both;}
.reveal .invisible {visibility: hidden;}

.reveal #small-steps .container {
	width : 100%;
	height: 150px;
}

.reveal #small-steps .containee {
	/*background-color: #f1f1f1;*/
	background-image: linear-gradient(-45deg,rgba(59, 117, 158, 0.2) 25%,transparent 25%,transparent 50%,rgba(59, 117, 158, 0.2) 50%,rgba(59, 117, 158, 0.2) 75%,transparent 75%,transparent);
	background-size: 25px 25px;
	border : 1px dotted rgba(59, 117, 158, 0.2);
	float:left;
    width: 20%;
    height: 50px;
    -webkit-transition: all 1s ease;
}

.reveal #small-steps .container.waterfall .containee {
	width: 60%;
}
.reveal #small-steps .container.agile1 .containee {
	width: 30%;
}
.reveal #small-steps .container.agile2 .containee {
	width: 40%;
}
.reveal #small-steps .container.agile3 .containee {
	width: 50%;
}
.reveal #small-steps .container.agile4 .containee {
	width: 60%;
}
.reveal #small-steps .container.continuous-deployment .containee {
	width: 60%;
	-webkit-transition: all 5s linear;
}

.reveal #small-steps h4 {
	margin: 10px auto;
	float:left;
	width: 300px;
	font-size:40px;
}

.reveal #auto-rollback .container {
	display:block;
	margin: 0 auto;
	width: 70%;
}

.reveal #auto-rollback .container > div:not(.metrics) {
	width: 45%;
	height: 300px;
	position:relative;
	float:left;
	margin-bottom: 20px;
}

.reveal #auto-rollback div.blue {
	border: 3px solid rgba(59, 117, 158, 1);
	margin-right: 6%;
}

.reveal #auto-rollback div.green {
	border: 3px solid green;
}

.reveal #auto-rollback .container > div p {
	position:absolute;
	top: 50px;
	left: 45%;
}

.reveal #auto-rollback div.traffic {
	background-image: linear-gradient(-45deg,rgba(59, 117, 158, 0.2) 25%,transparent 25%,transparent 50%,rgba(59, 117, 158, 0.2) 50%,rgba(59, 117, 158, 0.2) 75%,transparent 75%,transparent);
	background-size: 25px 25px;
	height:0;
	width: 100%;
	-webkit-transition: all 1s ease;
}

.reveal #auto-rollback div.metrics {
	-webkit-transition: all 1s ease;
	width: 99%;
	height: 150px;
	border: 1px solid gray;
	clear: both;
}

.reveal #auto-rollback div.metrics.ok {
	background-color:rgba(0, 153, 0, 0.3);
}

.reveal #auto-rollback div.metrics.ko {
	background-color:rgba(153, 0, 0, 0.3);
}

.reveal #auto-rollback .traffic-50-50 div.traffic {
	height:50%;
}

.reveal #auto-rollback .traffic-100-0 div.blue div.traffic {
	height:100%;
}
.reveal #auto-rollback .traffic-100-0 div.green div.traffic {
	height:0;
}
.reveal #auto-rollback .traffic-90-10 div.blue div.traffic {
	height:90%;
}
.reveal #auto-rollback .traffic-90-10 div.green div.traffic {
	height:10%;
}
.reveal #auto-rollback .traffic-80-20 div.blue div.traffic {
	height:80%;
}
.reveal #auto-rollback .traffic-80-20 div.green div.traffic {
	height:20%;
}
.reveal #auto-rollback .traffic-20-80 div.blue div.traffic {
	height:20%;
}
.reveal #auto-rollback .traffic-20-80 div.green div.traffic {
	height:80%;
}
.reveal #auto-rollback .traffic-0-100 div.blue div.traffic {
	height:0%;
}
.reveal #auto-rollback .traffic-0-100 div.green div.traffic {
	height:100%;
}