.progress-circle {
    font-size: 14px;
    position: relative; /* so that children can be absolutely positioned */
    padding: 0;
    width: 44px !important;
    height: 44px !important;
    background-color: #e6eaf5;
    border-radius: 50%;
}

/*.inProgress .progress-circle:after {*/
/*    background-color: #ffb822;*/
/*}*/
/*.delivered .progress-circle:after {*/
/*    background-color: #34bfa3;*/
/*}*/
.progress-circle:after{
    border: none;
    position: absolute;
    top: 5px;
    left: 5px;
    text-align: center;
    display: block;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    background-color: white;
    content: " ";
}
/* Text inside the control */
.progress-circle span {
    position: absolute;
    width: 44px;
    height: 44px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #34bfa3;
    z-index: 2;
}

.left-half-clipper {
    /* a round circle */
    border-radius: 50%;
    width: 44px;
    height: 44px;
    position: absolute; /* needed for clipping */
    clip: rect(0px, 44px, 22px, 0px); /* clips the whole top half*/
}

/* when p>50, don't clip left half*/
.progress-circle.over50 .left-half-clipper {
    clip: rect(auto, auto, auto, auto);
}

.value-bar {
    /*This is an overlayed square, that is made round with the border radius,
    then it is cut to display only the left half, then rotated clockwise
    to escape the outer clipping path.*/
    position: absolute; /*needed for clipping*/
    /*clip: rect(0px, 44px, 44px, 0);*/
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 5px solid #34bfa3; /*The border is 0.35 but making it larger removes visual artifacts */
    /*background-color: #4D642D; !*for debug*!*/
    box-sizing: border-box;
    animation: myMove 3s infinite;

}

/* Progress bar filling the whole right half for values above 50% */


.courseStarted .progress-circle .first50-bar,
.courseFinished .progress-circle .first50-bar {
    display: none;
}

.courseStarted .progress-circle.delivered .left-half-clipper,
.courseFinished .progress-circle.delivered .left-half-clipper {
    clip: rect(auto, auto, auto, auto);
}

.courseStarted .progress-circle.delivered .first50-bar,
.courseFinished .progress-circle.delivered .first50-bar {
    /*Progress bar for the first 50%, filling the whole bottom half*/
    position: absolute; /*needed for clipping*/
    clip: rect(0, 44px, 44px, 22px);
    background-color: #34bfa3;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: block;
}

.progress-circle .value-bar {
    display: none;
}

.courseStarted .progress-circle.inProgress .value-bar {
    display: block;
    transform: rotate(45deg);
}
.courseFinished .progress-circle.inProgress .value-bar {
    display: block;
    transform: rotate(45deg);
}
.courseStarted .progress-circle.delivered .value-bar,
.courseFinished .progress-circle.delivered .value-bar {
    display: block;
    transform: rotate(360deg);
    border: 5px solid #34bfa3;
    animation: none;

}


@keyframes myMove {
    0% {
        clip: rect(0, 0, 0, 0px);
    }
    100% {
        clip: rect(0px, 44px, 44px, 0);
    }
}

body {
    background-color: #fff;
}
/*Track delivery timeline*/
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item {
    width: 100%;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-content {
    background-color: #ececec;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-arrow,
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--left .m-timeline-1__item-arrow {
    color:  #ececec;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--right {
    left: 0;
}
.m-timeline-1:after {
    left: 0;
    width: 5px;
}
.m-card-profile {
    padding-top: 0;
}
.m-card-profile .m-card-profile__pic {
    text-align: left;
    margin-bottom: 15px;
    position: absolute;
}
.m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper {
    margin: 0;
    text-align: left;
    left: -77px;
    background-color: #ffffff;
    z-index: 1;
    position: relative;
    border: 5px solid #e6eaf5;
}
.courseStarted .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper,
.courseFinished .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper {
    border: 5px solid #34bfa3;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--first,
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--right {
    top: 0!important;
    margin-bottom: 30px;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--right .m-timeline-1__item-time {
    position: static;
    margin: 0;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-content {
    padding: 10px 2.14rem;
}
.m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--right .m-timeline-1__item-circle {
    width: 44px;
    height: 44px;
    top: 15px;
    z-index: 2;
    transform: translate(-50%,0);
}
.courseStarted.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-content::after,
.courseFinished.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-content::after {
    content: "";
    width: 5px;
    background-color: #34bfa3;
    position: absolute;
    left: -39px;
    top:-15px;
    z-index: 1;

}
.m-timeline-1 .m-timeline-1__items .inProgress.m-timeline-1__item .m-timeline-1__item-content::after {
    height: 45px;
    top:-15px;
}
.m-timeline-1 .m-timeline-1__items  .delivered.m-timeline-1__item .m-timeline-1__item-content::after {
    height: 150%;
}

.courseStarted .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper::after,
.courseFinished .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper::after {
    content: "";
    width: 5px;
    background-color: #34bfa3;
    position: absolute;
    left: 70px;
    z-index: 1;
    bottom: -25px;
    height: 20px;
}

.m-timeline-1 .m-timeline-1__items {
    padding-bottom: 20px;
}
.m-portlet{
    margin-left: 125px;
}
.content .m-portlet__head-label::after{
    content: none;
}

.flaticon::after {
    font-family: Flaticon;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    content: "\f181";
    color: #000000;

}
.courseStarted .delivered .flaticon::after,
.courseFinished .delivered .flaticon::after {
    content: "\f152";
}
.courseStarted .inProgress .flaticon::after,
.courseFinished .inProgress .flaticon::after {
    content: "\f172";
}
.courseFinished.m-timeline-1:after {
    background-color: #34bfa3;
}
.btn.m-btn--custom {
    font-family: 'Open Sans',sans-serif;
}
.m-timeline-1 .m-timeline-1__items .searchAddress.m-timeline-1__item .m-timeline-1__item-content {
    color: #ffffff;
    background-color: #34bfa3;
}
.m-timeline-1 .m-timeline-1__items .searchAddress.m-timeline-1__item .m-timeline-1__item-arrow,
.m-timeline-1 .m-timeline-1__items .searchAddress.m-timeline-1__item.m-timeline-1__item--left .m-timeline-1__item-arrow {
    color: #34bfa3;
}
@media (max-width: 1200px) {
    .m-timeline-1 {
        width: 80% !important;
    }
    .m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--right .m-timeline-1__item-circle {
        top: 15px;
        left: 0;
        transform: translate(-46%,0);
    }
    .m-timeline-1 .m-timeline-1__items .m-timeline-1__item.m-timeline-1__item--right {
        left: 0;
        margin-top: 0!important;
    }
}
@media (max-width: 767px) {
    .m-timeline-1 {
        width: 70% !important;
    }
    .courseStarted .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper::after,
    .courseFinished .m-card-profile .m-card-profile__pic .m-card-profile__pic-wrapper::after {
        bottom: -40px;
        height: 40px;
    }
}
@media (max-width: 575px)  {
    .m-portlet{
        margin-left:0;
    }
    .m-card-profile {
        margin-bottom: 155px;
    }
    .m-timeline-1 {
        width: 50% !important;
    }
    .m-timeline-1 .m-timeline-1__items .inProgress.m-timeline-1__item .m-timeline-1__item-content::after {
        height: 30px;
        top: -5px;
    }
    .courseStarted.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-content::after,
    .courseFinished.m-timeline-1 .m-timeline-1__items .m-timeline-1__item .m-timeline-1__item-content::after {
        top: -5px;
    }
}