
body {
    color: #1a1a1a;
    font-family: sans-serif;
}



/* progressbar */

.progressbar {
    position: relative;
    margin: 20px auto 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 460px;
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    width: 33.333%;
    color: #919191;
    counter-increment: steps;
}
.progressbar li:before {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 8px auto;
    content: '';
    line-height: 32px;
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
    background-color: #f4f4f4;
    content: counter(steps);
}
.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #F5F5F5;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: #0070BD;
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: #0070BD;
    color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #0070BD;
}


/* like tailwind */

.text-center {
    text-align: center;
}

.text-bold {
	font-weight: bold;
}

.text-red {
	color: #E93B4E;
}