@media print, screen and (min-width: 768px) {
.flow {
    border: 3px solid rgb(107,144,219);
	background-color: #FFF;
}
.flow > li {
    padding: 30px 30px 30px 15px;
}
.flow > li:not(:last-child) {
    border-bottom: 3px solid rgb(107,144,219);
    position: relative;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 14%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.flow > li:not(:last-child)::before {
    border-width: 22px;
    border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child)::after {
    border-width: 18px;
    border-top-color: #fff;
}
.flow > li dl {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flow > li dl dt {
    font-size: 20px;
    font-weight: 600;
    color: rgb(107,144,219);
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    margin-right: 1vw;
    text-align: center;
	display:table;
}
.flow > li dl dt .icon {
    font-size: 12px;
    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;
	width:180px;
}
}
@media print, screen and (max-width: 767px) {
.flow {
    border: 3px solid rgb(107,144,219);
	background-color: #FFF;
}
.flow > li {
    padding: 10px;
}
.flow > li:not(:last-child) {
    border-bottom: 3px solid rgb(107,144,219);
    position: relative;
}
.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 14%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.flow > li:not(:last-child)::before {
    border-width: 22px;
    border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child)::after {
    border-width: 18px;
    border-top-color: #fff;
}
.flow > li dl {
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flow > li dl dt {
    font-size: 20px;
    font-weight: 600;
    color: rgb(107,144,219);
    -ms-flex-preferred-size: 20%;
    text-align: center;
}
.flow > li dl dt .icon {
    font-size: 12px;
    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: 0px auto 10px;
    display: block;
    border-radius: 20px;
	width:180px;
}
}