/*---------Progress Bars--------------*/

.section.setup-section p {
    font-size: 16px;
    color: #141d28;
    line-height: 20px;
}
.arrow {
    border: 2em solid transparent;
    height: 0;
    margin: 50vh auto;
    width: 0;
}

.arrow.down {
    border-bottom: none;
    border-top-color: #e5e5e5;
}
.arrow.up {
    border-bottom-color: #e5e5e5;
    border-top: none;
}
/*** RADIAL PROGRESS ***/
/* Circumference = 2pr */
/* p = 3.1415926535898 */
/* r = 35 */

.circle_progress p {
    font-size: 16px;
    line-height: 22px;
}

.circle_progress:after {
    position: absolute;
    content: "";
    background: #e1e1e1;
    width: 72%;
    height: 3px;
    right: -90px;
    top: 45px;
}

.last-circle:after {
    width: 0 !important;
}

svg.radial-progress {
    height: auto;
    max-width: 90px;
    padding: 8px;
    transform: rotate(-90deg);
    width: 100%;
    background:#fff;
    border-radius:50%;
    box-shadow: 0px 0px 30px rgba(207, 247, 221, 0.6);
	margin-bottom:10px;
}

svg.radial-progress circle {
    fill: rgba(0,0,0,0);
    stroke: #fff;
    stroke-dashoffset: 219.91148575129; /* Circumference */
    stroke-width: 3;
}

svg.radial-progress circle.incomplete { /*opacity: 0.25;*/ stroke: #eee !important; }

svg.radial-progress circle.complete { stroke-dasharray: 219.91148575129; /* Circumference */ }

svg.radial-progress text {
    fill: #4de36d;
    font-size: 32px;
    text-anchor: middle;
}

/*** COLORS ***/
/* Primary */

svg.radial-progress:nth-of-type(6n+1) circle { stroke: #4de36d; }

/* Secondary */

svg.radial-progress:nth-of-type(6n+2) circle { stroke: #83e4e2; }

/* Tertiary */

svg.radial-progress:nth-of-type(6n+3) circle { stroke: #fd6470; }

/* Quaternary */

svg.radial-progress:nth-of-type(6n+4) circle { stroke: #fca858; }

/* Quinary */

svg.radial-progress:nth-of-type(6n+5) circle { stroke: #fddc32; }

.mob_progress_section ul li{display: flex;
    font-size: 19px;
    color: #000;
    line-height: 25px;
    padding-left: 52px;
    padding-right: 50px;
    position: relative;
    vertical-align: middle;
    /*margin:0 0 10px 0;*/
    min-height: 60px;
    align-items: center;
}

.mob_progress_section ul li span {     
	margin-right: 10px;
    font-size: 24px;
    color: #f16321;
    background: #fff;
    border-radius: 70%;
    padding: 7px;
    height: 40px;
    width: 40px;
    position: absolute;
    text-align: center;
    left: 0;
    top: 8px;
    box-shadow: 0 2px 3px #ccc;
}

.mob_progress_section ul li span:after {
    position: absolute;
    top: 41px;
    left: 20px;
    display: block;
    width: 68%;
    border-left: 1px dotted #f16321;
    content: " ";
    height: 29px;
}
.mob_progress_section ul li:last-child span:after {border-left:none;}


@media (min-width: 992px) and (max-width: 1199px){
.circle_progress:after { 
    width: 77%; 
}
    
}

@media (min-width: 768px) and (max-width: 991px){
.circle_progress:after { 
    display: none; 
}

.circle_progress {
    min-height: 220px;
}

.circle_progress p { 
    padding: 0 20px;
}
    
}

@media (max-width: 640px){
    
.mob_progress_section ul li { 
    padding-right: 20px; 
}
    
}