.box1{
	background:rgba(250, 250, 250,0.9);
	border-radius:20px;
	margin:0px 0px 10%;
	padding:0px 2% 2%;
}

#notes span{
	font-weight:bold;
  font-size: 1.2em;
	margin:0px 0px 0px 10px;
}
#notes .box{
	padding-top:20px;
}
#notes ul{
	margin:5px auto;
}


* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
dd {
  margin-left: 0;
}

#flow {
	margin:0px auto;
	max-width:800px;
}
.flow li img{
	display:block;
	width:100%;
	margin:10px auto;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li dl {
  width: 100%;
  padding: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107,144,219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: rgba(255, 255, 255, 0.9);
}
.flow > li dl dt {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(107,144,219);
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 1rem;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}
.flow li dl dt {
	display:block;
	width:100%;
}
.flow li dl dd {
	display:block;
	width:100%;
	font-weight:bold;
}
.flow li dl dd p{
	padding:2% 0px;
	font-size:1rem;
	line-height:1.5rem;
	border-radius:10px;
}
.flow li dl dd #p1{
	background:#f2cfdf;
}
.flow li dl dd #p2{
	background:#aed7ee;
}
.flow li dl dd #p3{
	background:#d7e780;
}
.flow li dl dd #p4{
	background:#addfdf;
}
.flow li dl dd #p5{
	background:#f5b39b;
}
.flow li dl dd #p6{
	background:#f6d58d;
}

.flow li dl .material-icons {
	border-radius:50px;
	font-size:3rem;
	vertical-align:bottom;
	background:#fff;
	padding:10px;
	margin:10px;
}
.flow li dl dd #p1 .material-icons{
  color:#e5a0bf;
}
.flow li dl dd #p2 .material-icons{
  color:#5db0dd;
}
.flow li dl dd #p3 .material-icons{
  color:#b0cf01;
}
.flow li dl dd #p4 .material-icons{
  color:#5bc0bf;
}
.flow li dl dd #p5 .material-icons{
  color:#ec6837;
}
.flow li dl dd #p6 .material-icons{
  color:#edab1b;
}

.btn1{
	font-size:1.2rem;
	width:90%;
	margin:20px auto;
	padding:0px;
	text-align:center;
	display:inline-block;
}
.btn1 a {
	display:block;
	border: 3px solid #f00;
	background:#f00;
	color:#fff;
	transition: all 1s;
	padding:2% 1%;
	border-radius: 30px;
	text-decoration:none;
}
.btn1 a:hover {
	border: 3px solid #f00;
	color:#414141;
	border-radius: 30px;
	background:#fff;
}
