.card_header {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    background: #cca970;
    border: none;
}

.card_header:first-child {
    border-radius: calc(0.37rem - 1px) calc(0.37rem - 1px) 0 0
}

.progress_block {
    position: relative;
    background-color: #dee2e6;
    height: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    margin-top: 50px
}

.progress_block .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    border-radius: 100%;
    background: #dee2e6;
    color: #fff;
}

.progress_block .text {
    display: block;
    margin-top: 7px
}

.progress_block .progress_status {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 25%;
    margin-top: -18px;
    text-align: center;
    position: relative
}

.progress_block .progress_status::before {
    height: 7px;
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 18px
}

.progress_block .progress_status.active:before {
    background: #113885
}

.progress_block .progress_status.active .icon {
    background: #113885;
    color: #fff
}

.progress_block .progress_status.active .text {
    font-weight: 400;
    color: #000
}