.Steps {
    width: auto;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.Steps:after {
    content: '';
    display: table;
    clear: both;
}

.Steps ol {
    margin: 0;
    padding: 0;
}

.Steps li {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: none;
    margin: 0 15px 0 0;
}

.Steps li::after {
    display: inline-block;
    position: absolute;
    content: '';
    height: 2px;
    background: #e1e1e1;
    margin: 0;
}

.Steps li.visited::after {
    width: 100%;
    top: 50%;
    left: 100%;
    background: var(--corGeral);
    -webkit-transform: translateY(-50%) translateX(-1px);
    -moz-transform: translateY(-50%) translateX(-1px);
    -ms-transform: translateY(-50%) translateX(-1px);
    -o-transform: translateY(-50%) translateX(-1px);
    transform: translateY(-50%) translateX(-1px);
}

.Steps li.next::after {
    width: 100%;
    top: 50%;
    left: 100%;
    background: #e1e1e1;
    -webkit-transform: translateY(-50%) translateX(-1px);
    -moz-transform: translateY(-50%) translateX(-1px);
    -ms-transform: translateY(-50%) translateX(-1px);
    -o-transform: translateY(-50%) translateX(-1px);
    transform: translateY(-50%) translateX(-1px);
}

.Steps li.last::after {}

.Steps li.current::after {
    width: 100%;
    top: 50%;
    left: 100%;
    background: #e1e1e1;
    -webkit-transform: translateY(-50%) translateX(-1px);
    -moz-transform: translateY(-50%) translateX(-1px);
    -ms-transform: translateY(-50%) translateX(-1px);
    -o-transform: translateY(-50%) translateX(-1px);
    transform: translateY(-50%) translateX(-1px);
}

.Steps li:last-of-type {
    margin-right: 0;
}

.Steps li.visited:last-of-type::after {
    width: 0;
}

.Steps li a {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--corGeral)
}

.Steps li.visited a:hover {
    background-color: var(--corGeralBorda);
    border: 2px solid var(--corGeralBorda);
}

.Steps li.current a:hover,
.Steps li.next a:hover,
.Steps li.last a:hover {
    background-color: white;
    border: 2px solid var(--corGeral)
}


.Steps li.visited>a {
    background-color: var(--corGeral);
    border: 2px solid var(--corGeral);
    color: white;
}

.Steps li.current>a {
    background-color: white;
    border: 2px solid var(--corGeral);
    color: black;
}

.Steps li.next>a {
    background-color: white;
    border: 2px solid #e1e1e1;
    color: black;
}

.Steps li.last>a {
    background-color: white;
    border: 2px solid #e1e1e1;
    color: black;
}

.Steps li svg {
    display: block;
    width: 40px;
    height: auto;
    margin: 0;
}

.Steps li.visited svg {
    -webkit-filter: brightness(3);
    filter: brightness(3);
}


.Steps .BadgeStatus {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 0px solid transparent !important;
    margin: -3px -5px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.Steps .BadgeStatus img {
    width: 30px;
    height: auto;
}

.Steps li.visited .BadgeStatus {
    background: green;
}

.Steps li.current .BadgeStatus {
    background: orange;
}

.Steps .LabelStep {
    position: absolute;
    width: 100%;
    height: 35px;
    background: transparent;
    border-radius: 0;
    border: 0px solid transparent;
    margin: 140px 0 0 0;
    z-index: 4;
    text-align: center;
    pointer-events: none;
}

.Steps .DetailsStep {
    position: absolute;
    width: 100%;
    height: 50px;
    background: transparent;
    border-radius: 0;
    text-align: center;
    margin: 220px 0 0 0;
}

.Steps .LabelStep p,
.Steps .DetailsStep p {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
}

.StepsOverflow {
    display: block;
    overflow-x: auto;
    height: 179px;
    margin-bottom: -31px !important;
}

.olOverflow {
    display: flex;
    margin-top: 4px !important;
}

@media (max-width: 450px) {

    .StepsOverflow {
        height: 100%;
    }

    .olOverflow {
        display: block;
    }

    .Steps li {
        display: flex;
        margin: 20px 0 70px 0;
    }

    .Steps li a {
        width: 120px;
        height: 120px;
    }

    .Steps li img {
        width: 60px;
    }

    .Steps li.visited::after {
        width: 2px;
        height: 250px;
        top: 100;
        left: 50%;
        -webkit-transform: translateX(-50%) translateX(-1px);
        -moz-transform: translateX(-50%) translateX(-1px);
        -ms-transform: translateX(-50%) translateX(-1px);
        -o-transform: translateX(-50%) translateX(-1px);
        transform: translateX(-50%) translateX(-1px);
    }

    .Steps li.current::after {
        width: 2px;
        height: 200px;
        left: 50%;
        -webkit-transform: translateX(-50%) translateX(-1px);
        -moz-transform: translateX(-50%) translateX(-1px);
        -ms-transform: translateX(-50%) translateX(-1px);
        -o-transform: translateX(-50%) translateX(-1px);
        transform: translateX(-50%) translateX(-1px);
    }

    .Steps li.next::after {
        width: 2px;
        height: 200px;
        left: 50%;
        -webkit-transform: translateX(-50%) translateX(-1px);
        -moz-transform: translateX(-50%) translateX(-1px);
        -ms-transform: translateX(-50%) translateX(-1px);
        -o-transform: translateX(-50%) translateX(-1px);
        transform: translateX(-50%) translateX(-1px);
    }

    .Steps li.Selected::after {
        margin-top: -50px;
    }

    .Steps .BadgeStatus {
        right: 50%;
        margin: -3px -45px 0 0;
    }

    .Steps .LabelStep {
        margin-top: 180px;
        background: white;
        height: 30px;
    }

    .Steps .DetailsStep {
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 80px;
        position: relative;
        margin: 20px 0 -35px 0;
        border: 1px solid #00a5c9;
        z-index: 5;
    }

    .Steps .LabelStep p,
    .Steps .DetailsStep p {
        font-size: 12px;
        line-height: 16px;
    }

}

















/* --------------------------------

Basic Style

-------------------------------- */
.cd-breadcrumb,
.cd-multi-steps {
    width: 100%;
    padding: 0.5em 1em;
    margin: 22px auto 0 auto;
    border-radius: .25em;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 10px;
}

.cd-breadcrumb:after,
.cd-multi-steps:after {
    content: "";
    display: table;
    clear: both;
}

.cd-breadcrumb li,
.cd-multi-steps li {
    display: inline-block;
    float: left;
    margin: 0.5em 0;
}

.cd-breadcrumb li::after,
.cd-multi-steps li::after {
    /* this is the separator between items */
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: #959fa5;
}

.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
    /* hide separator after the last item */
    display: none;
}

.cd-breadcrumb li>*,
.cd-multi-steps li>* {
    /* single step */
    display: inline-block;
    color: #fff;
    background-color: #00a5c9;
    border: 2px solid #00a5c9;
}

.cd-multi-steps.text-center li>* {
    z-index: 1;
    padding: 3px 10px;
    border-radius: .25em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: white;
}

.cd-multi-steps.text-center li.next>* {
    background-color: white;
    border: 2px solid #00a5c9;
    color: #00a5c9;
}




.cd-breadcrumb li.current>*,
.cd-multi-steps li.current>* {
    /* selected step */
    color: white;
}

.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
    /* steps already visited */
    color: #96c03d;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
    /* replace the default arrow separator with a custom icon */
    content: '';
    height: 16px;
    width: 16px;
    background: url(../img/cd-custom-separator.svg) no-repeat 0 0;
    vertical-align: middle;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2)>*::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2)>*::before {
    /* change custom icon using image sprites */
    /*background-position: -20px 0;*/
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3)>*::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3)>*::before {
    background-position: -40px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4)>*::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4)>*::before {
    /*background-position: -60px 0;*/
}

.cd-breadcrumb.custom-icons li.current:first-of-type>*::before,
.cd-multi-steps.custom-icons li.current:first-of-type>*::before {
    /* change custom icon for the current item */
    background-position: 0 -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(2)>*::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2)>*::before {
    background-position: -20px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(3)>*::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3)>*::before {
    /*background-position: -40px -20px;*/
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(4)>*::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4)>*::before {
    background-position: -60px -20px;
}

@media only screen and (min-width: 768px) {

    .cd-breadcrumb,
    .cd-multi-steps {
        padding: 0 1.2em;
    }

    .cd-breadcrumb li,
    .cd-multi-steps li {
        margin: 1.2em 0;
    }

    .cd-breadcrumb li::after,
    .cd-multi-steps li::after {
        margin: 0 1em;
    }

    .cd-breadcrumb li>*,
    .cd-multi-steps li>* {
        font-size: 1.6rem;
    }
}

/* --------------------------------

Triangle breadcrumb

-------------------------------- */
@media only screen and (min-width: 768px) {
    .cd-breadcrumb.triangle {
        /* reset basic style */
        background-color: transparent;
        padding: 0;
    }

    .cd-breadcrumb.triangle li {
        position: relative;
        padding: 0;
        margin: 4px 4px 4px 0;
    }

    .cd-breadcrumb.triangle li:last-of-type {
        margin-right: 0;
    }

    .cd-breadcrumb.triangle li>* {
        position: relative;
        padding: 1em .8em 1em 2.5em;
        color: #2c3f4c;
        background-color: #edeff0;
        /* the border color is used to style its ::after pseudo-element */
        border-color: #edeff0;
    }

    .cd-breadcrumb.triangle li.current>* {
        /* selected step */
        color: #ffffff;
        background-color: #96c03d;
        border-color: #96c03d;
    }

    .cd-breadcrumb.triangle li:first-of-type>* {
        padding-left: 1.6em;
        border-radius: .25em 0 0 .25em;
    }

    .cd-breadcrumb.triangle li:last-of-type>* {
        padding-right: 1.6em;
        border-radius: 0 .25em .25em 0;
    }

    .no-touch .cd-breadcrumb.triangle a:hover {
        /* steps already visited */
        color: #ffffff;
        background-color: #2c3f4c;
        border-color: #2c3f4c;
    }

    .cd-breadcrumb.triangle li::after,
    .cd-breadcrumb.triangle li>*::after {
        /*
    	li > *::after is the colored triangle after each item
    	li::after is the white separator between two items
    */
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        height: 0;
        width: 0;
        /* 48px is the height of the <a> element */
        border: 24px solid transparent;
        border-right-width: 0;
        border-left-width: 20px;
    }

    .cd-breadcrumb.triangle li::after {
        /* this is the white separator between two items */
        z-index: 1;
        -webkit-transform: translateX(4px);
        -moz-transform: translateX(4px);
        -ms-transform: translateX(4px);
        -o-transform: translateX(4px);
        transform: translateX(4px);
        border-left-color: #ffffff;
        /* reset style */
        margin: 0;
    }

    .cd-breadcrumb.triangle li>*::after {
        /* this is the colored triangle after each element */
        z-index: 2;
        border-left-color: inherit;
    }

    .cd-breadcrumb.triangle li:last-of-type::after,
    .cd-breadcrumb.triangle li:last-of-type>*::after {
        /* hide the triangle after the last step */
        display: none;
    }

    .cd-breadcrumb.triangle.custom-separator li::after {
        /* reset style */
        background-image: none;
    }

    .cd-breadcrumb.triangle.custom-icons li::after,
    .cd-breadcrumb.triangle.custom-icons li>*::after {
        /* 50px is the height of the <a> element */
        border-top-width: 25px;
        border-bottom-width: 25px;
    }

    @-moz-document url-prefix() {

        .cd-breadcrumb.triangle li::after,
        .cd-breadcrumb.triangle li>*::after {
            /* fix a bug on Firefix - tooth edge on css triangle */
            border-left-style: dashed;
        }
    }
}

/* --------------------------------

Custom icons hover effects - breadcrumb and multi-steps

-------------------------------- */
@media only screen and (min-width: 768px) {

    .no-touch .cd-breadcrumb.triangle.custom-icons li:first-of-type a:hover::before,
    .cd-breadcrumb.triangle.custom-icons li.current:first-of-type em::before,
    .no-touch .cd-multi-steps.text-center.custom-icons li:first-of-type a:hover::before,
    .cd-multi-steps.text-center.custom-icons li.current:first-of-type em::before {
        /* change custom icon using image sprites - hover effect or current item */
        /*background-position: 0 -40px;*/
    }

    .no-touch .cd-breadcrumb.triangle.custom-icons li:nth-of-type(2) a:hover::before,
    .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(2) em::before,
    .no-touch .cd-multi-steps.text-center.custom-icons li:nth-of-type(2) a:hover::before,
    .cd-multi-steps.text-center.custom-icons li.current:nth-of-type(2) em::before {
        /*background-position: -20px -40px;*/
    }

    .no-touch .cd-breadcrumb.triangle.custom-icons li:nth-of-type(3) a:hover::before,
    .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(3) em::before,
    .no-touch .cd-multi-steps.text-center.custom-icons li:nth-of-type(3) a:hover::before,
    .cd-multi-steps.text-center.custom-icons li.current:nth-of-type(3) em::before {
        /*background-position: -40px -40px;*/
        /*background: url("../svg/Atual.svg") no-repeat center center;*/
    }

    .no-touch .cd-breadcrumb.triangle.custom-icons li:nth-of-type(4) a:hover::before,
    .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(4) em::before,
    .no-touch .cd-multi-steps.text-center.custom-icons li:nth-of-type(4) a:hover::before,
    .cd-multi-steps.text-center.custom-icons li.current:nth-of-type(4) em::before {
        /*background-position: -60px -40px;*/
    }
}

/* --------------------------------

Multi steps indicator

-------------------------------- */
@media only screen and (min-width: 768px) {
    .cd-multi-steps {
        /* reset style */
        background-color: transparent;
        padding: 0;
        text-align: center;
        display: flex;
    }

    .cd-multi-steps li {
        position: relative;
        float: none;
        margin: 0.4em 40px 0.4em 0;
    }

    .cd-multi-steps li:last-of-type {
        margin-right: 0;
    }

    .cd-multi-steps li::after {
        /* this is the line connecting 2 adjacent items */
        position: absolute;
        content: '';
        height: 2px;
        background: #e1e1e1;
        /* reset style */
        margin: 0;
    }

    .cd-multi-steps li.visited::after {
        background-color: #00a5c9;
    }

    .cd-multi-steps li>*,
    .cd-multi-steps li.current>* {
        position: relative;
        color: #2c3f4c;
    }

    .cd-multi-steps.custom-separator li::after {
        /* reset style */
        height: 4px;
        background: #edeff0;
    }

    .cd-multi-steps.text-center li::after {
        width: 100%;
        top: 50%;
        left: 100%;
        -webkit-transform: translateY(-50%) translateX(-1px);
        -moz-transform: translateY(-50%) translateX(-1px);
        -ms-transform: translateY(-50%) translateX(-1px);
        -o-transform: translateY(-50%) translateX(-1px);
        transform: translateY(-50%) translateX(-1px);
    }

    .cd-multi-steps.text-center li>* {
        z-index: 1;
        width: 80px;
        height: 80px;
        border-radius: 100%;
        background-color: #edeff0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cd-multi-steps.text-center li img {
        width: 46px;
        height: auto;

        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .cd-multi-steps.text-center li.visited img {
        -webkit-filter: brightness(3);
        filter: brightness(3);
    }


    .no-touch .cd-multi-steps.text-center a:hover {
        background-color: #038caa;
        border: 2px solid #038caa;
    }

    .cd-multi-steps.text-center li.visited>* {
        color: #ffffff;
        background-color: #00a5c9;
        border: 2px solid #00a5c9;
    }

    .cd-multi-steps.text-center li.current>* {
        color: #ffffff;
        background-color: white;
        border: 2px solid #00a5c9;
    }


    .cd-multi-steps.text-center li.next>* {
        border: 2px solid #e1e1e1;
        color: #00a5c9;
    }

    .cd-multi-steps.text-center li.next a:hover {
        background-color: white;
        border: 2px solid #00a5c9;
        color: #00a5c9;
    }

    .cd-multi-steps.text-center li.current a:hover {
        background-color: white;
        border: 2px solid #00a5c9;
        color: #00a5c9;
    }

    .cd-multi-steps.text-center.custom-icons li.visited a::before {
        /* change the custom icon for the visited item - check icon */
        /* background-position: 5px -42px;*/
    }

    .cd-multi-steps.text-top li,
    .cd-multi-steps.text-bottom li {
        width: 80px;
        text-align: center;
    }

    .cd-multi-steps.text-top li::after,
    .cd-multi-steps.text-bottom li::after {
        /* this is the line connecting 2 adjacent items */
        position: absolute;
        left: 50%;
        /* 40px is the <li> right margin value */
        width: calc(100% + 40px);
    }

    .cd-multi-steps.text-top li>*::before,
    .cd-multi-steps.text-bottom li>*::before {
        /* this is the spot indicator */
        content: '';
        position: absolute;
        z-index: 1;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 12px;
        width: 12px;
        border-radius: 50%;
        background-color: #edeff0;
    }

    .cd-multi-steps.text-top li.visited>*::before,
    .cd-multi-steps.text-top li.current>*::before,
    .cd-multi-steps.text-bottom li.visited>*::before,
    .cd-multi-steps.text-bottom li.current>*::before {
        background-color: #96c03d;
    }

    .no-touch .cd-multi-steps.text-top a:hover,
    .no-touch .cd-multi-steps.text-bottom a:hover {
        color: #96c03d;
    }

    .no-touch .cd-multi-steps.text-top a:hover::before,
    .no-touch .cd-multi-steps.text-bottom a:hover::before {
        box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
    }

    .cd-multi-steps.text-top li::after {
        /* this is the line connecting 2 adjacent items */
        bottom: 4px;
    }

    .cd-multi-steps.text-top li>* {
        padding-bottom: 20px;
    }

    .cd-multi-steps.text-top li>*::before {
        /* this is the spot indicator */
        bottom: 0;
    }

    .cd-multi-steps.text-bottom li::after {
        /* this is the line connecting 2 adjacent items */
        top: 3px;
    }

    .cd-multi-steps.text-bottom li>* {
        padding-top: 20px;
    }

    .cd-multi-steps.text-bottom li>*::before {
        /* this is the spot indicator */
        top: 0;
    }
}

/* --------------------------------

Add a counter to the multi-steps indicator

-------------------------------- */
.cd-multi-steps.count li {
    counter-increment: steps;
}

.cd-multi-steps.count li>*::before {
    content: counter(steps) " - ";
}

@media only screen and (min-width: 768px) {

    .cd-multi-steps.text-top.count li>*::before,
    .cd-multi-steps.text-bottom.count li>*::before {
        /* this is the spot indicator */
        content: counter(steps);
        height: 26px;
        width: 26px;
        line-height: 26px;
        font-size: 1.4rem;
        color: #ffffff;
    }

    .cd-multi-steps.text-top.count li:not(.current) em::before,
    .cd-multi-steps.text-bottom.count li:not(.current) em::before {
        /* steps not visited yet - counter color */
        color: #2c3f4c;
    }

    .cd-multi-steps.text-top.count li::after {
        bottom: 11px;
    }

    .cd-multi-steps.text-top.count li>* {
        padding-bottom: 34px;
    }

    .cd-multi-steps.text-bottom.count li::after {
        top: 11px;
    }

    .cd-multi-steps.text-bottom.count li>* {
        padding-top: 34px;
    }
}




@media only screen and (max-width: 450px) {

    .cd-breadcrumb,
    .cd-multi-steps {
        margin: 8px auto 0 auto;
    }

    .cd-multi-steps.text-center li>* {
        padding: 1px 9px;
    }

    .cd-breadcrumb.custom-icons li> ::before,
    .cd-multi-steps.custom-icons li> ::before,
    .cd-breadcrumb.custom-icons li.current> ::before,
    .cd-multi-steps.custom-icons li.current> ::before,
    .cd-breadcrumb.custom-icons li.next> ::before,
    .cd-multi-steps.custom-icons li.next> ::before,
    .cd-breadcrumb li::after,
    .cd-multi-steps li::after {
        display: none;
    }

    .cd-breadcrumb li,
    .cd-multi-steps li {
        margin: 0 5px 5px 0;
    }


}





.NameStep {
    position: absolute !important;
    width: 100% !important;
    height: 35px !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: 0px solid transparent !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    color: #00a5c9 !important;
    line-height: 12px;
    margin: 10px 0 0 0 !important;
}

.DetailStep {
    position: absolute !important;
    width: 100% !important;
    height: 50px !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: 0px solid transparent !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    color: #666 !important;
    line-height: 12px;
    margin: 45px 0 0 0 !important;
}

.StatusSteps {
    opacity: 0;
}