.breadcrumb {
    padding: 0 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: #fff;
    border-radius: 4px;
}

.breadcrumb>li {
    display: inline-block;
}

.breadcrumb.withCheck {
    margin-bottom: 30px;
}

.breadcrumb.withCheck li {
    position: relative;
    margin-right: 35px;
    padding-left: 15px;
    width: auto;
}

.breadcrumb.withCheck li:before {
    position: absolute;
    left: -25px;
}

.breadcrumb.withCheck li.checked,
.breadcrumb.withCheck li.checked a {
    color: #3c763d;
}

.breadcrumb.withCheck li.unchecked,
.breadcrumb.withCheck li.unchecked a {
    color: #cc3333 !important;
}

.breadcrumb.withCheck li.unchecked:after {
    position: absolute;
    left: 0;
    content: "\f057";
    display: inline-block;
    font: normal normal normal 14px/1 Fontello;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb.withCheck li.checked:after {
    position: absolute;
    left: 0;
    top: 4px;
    content: "\e808";
    display: inline-block;
    font: normal normal normal 14px/1 Fontello;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb.withCheck li:after {
    content: "\f10c";
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    font: normal normal normal 14px/1 Fontello;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb.withCheck li,
.breadcrumb.withCheck li a {
    color: #666;
}

.breadcrumb.withCheck li.active,
.breadcrumb.withCheck li.active a {
    color: #333;
    font-weight: bold;
}

.breadcrumb.withCheck li:before {
    position: absolute;
    left: -25px;
}

.breadcrumb>li+li:before {
    content: ">\00a0";
    padding: 0 5px;
    color: #ccc;
}

/* Standard breadcrumbs*/
.wa-breadcrumb,
.wa-multi-steps {
    padding: 0.5em 1em;
    margin: 1em auto;
    background-color: #edeff0;
    border-radius: .25em;
    text-transform: uppercase;
}

.wa-breadcrumb:after,
.wa-multi-steps:after {
    content: "";
    display: table;
    clear: both;
}

.wa-breadcrumb li,
.wa-multi-steps li {
    display: inline-block;
    float: left;
    margin: 0.5em 0;
}

.wa-breadcrumb li::after,
.wa-multi-steps li::after {
    /* this is the separator between items */
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: #959fa5;
}

.wa-breadcrumb li:last-of-type::after,
.wa-multi-steps li:last-of-type::after {
    /* hide separator after the last item */
    display: none;
}

.wa-breadcrumb li>*,
.wa-multi-steps li>* {
    /* single step */
    display: inline-block;
    font-size: 13px;
    color: #2c3f4c;
}

.wa-breadcrumb li.current>*,
.wa-multi-steps li.current>* {
    /* selected step */
    color: #96c03d;
}

.no-touch .wa-breadcrumb a:hover,
.no-touch .wa-multi-steps a:hover {
    /* steps already visited */
    color: #96c03d;
}

.wa-breadcrumb.custom-separator li::after,
.wa-multi-steps.custom-separator li::after {
    /* replace the default arrow separator with a custom icon */
    content: '';
    height: 16px;
    width: 16px;
    background: url(../img/wa-custom-separator.svg) no-repeat center center;
    vertical-align: middle;
}

/* .wa-breadcrumb.custom-icons li>*::before,
.wa-multi-steps.custom-icons li>*::before { */
/* add a custom icon before each item */
/* content: '';
	display: inline-block;
	height: 20px;
	width: 20px;
	margin-right: .4em;
	margin-top: -2px;
	background: url(../img/wa-custom-icons-01.svg) no-repeat 0 0;
	vertical-align: middle; */
/* } */

.wa-breadcrumb.custom-icons li:not(.current):nth-of-type(2)>*::before,
.wa-multi-steps.custom-icons li:not(.current):nth-of-type(2)>*::before {
    /* change custom icon using image sprites */
    background-position: -20px 0;
}

.wa-breadcrumb.custom-icons li:not(.current):nth-of-type(3)>*::before,
.wa-multi-steps.custom-icons li:not(.current):nth-of-type(3)>*::before {
    background-position: -40px 0;
}

.wa-breadcrumb.custom-icons li:not(.current):nth-of-type(4)>*::before,
.wa-multi-steps.custom-icons li:not(.current):nth-of-type(4)>*::before {
    background-position: -60px 0;
}

.wa-breadcrumb.custom-icons li.current:first-of-type>*::before,
.wa-multi-steps.custom-icons li.current:first-of-type>*::before {
    /* change custom icon for the current item */
    background-position: 0 -20px;
}

.wa-breadcrumb.custom-icons li.current:nth-of-type(2)>*::before,
.wa-multi-steps.custom-icons li.current:nth-of-type(2)>*::before {
    background-position: -20px -20px;
}

.wa-breadcrumb.custom-icons li.current:nth-of-type(3)>*::before,
.wa-multi-steps.custom-icons li.current:nth-of-type(3)>*::before {
    background-position: -40px -20px;
}

.wa-breadcrumb.custom-icons li.current:nth-of-type(4)>*::before,
.wa-multi-steps.custom-icons li.current:nth-of-type(4)>*::before {
    background-position: -60px -20px;
}

@media only screen and (min-width: 768px) {

    .wa-breadcrumb,
    .wa-multi-steps {
        padding: 0 1.2em;
    }

    .wa-breadcrumb li,
    .wa-multi-steps li {
        margin: 1.2em 0;
    }

    .wa-breadcrumb li::after,
    .wa-multi-steps li::after {
        margin: 0 1em;
    }

    .wa-breadcrumb li>*,
    .wa-multi-steps li>* {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) {
    .wa-breadcrumb.triangle {
        /* reset basic style */
        background-color: transparent;
        padding: 0;
    }

    .wa-breadcrumb.triangle li {
        position: relative;
        padding: 0;
        margin: 4px 0px 4px 0;
    }

    .wa-breadcrumb.triangle li:last-of-type {
        margin-right: 0;
    }

    .wa-breadcrumb.triangle li>* {
        position: relative;
        padding: 1em .8em 1em 1.8em;
        color: #ffffff;
        background-color: #0b6284;
        /* the border color is used to style its ::after pseudo-element */
        border-color: #0b6284;
    }

    .wa-breadcrumb.triangle li.current>* {
        /* selected step */
        color: #0b6284;
        background-color: #bbe8f9;
        border-color: #bbe8f9;
    }

    .wa-breadcrumb.triangle li.doubleline {
        position: relative;
        padding: 0;
        margin: 4px 0px 4px 0;
        width: min-intrinsic;
        width: -webkit-min-content;
        width: -moz-min-content;
        width: min-content;
        text-align: center;
    }

    .wa-breadcrumb.triangle li.doubleline>* {
        position: relative;
        padding: 5px 0 0 20px;
        min-width: 120px;
        height: 49px;
    }

    .wa-breadcrumb.triangle li:first-of-type>* {
        padding-left: 10px;
        border-radius: .25em 0 0 .25em;
    }

    .wa-breadcrumb.triangle li:last-of-type>* {
        padding-right: 10px;
        border-radius: 0 .25em .25em 0;
    }

    .wa-breadcrumb.triangle .touch:hover {
        /* steps already visited */
        color: #0b6284;
        background-color: #bbe8f9;
        border-color: #bbe8f9;
        cursor: pointer;
        text-decoration: underline;
    }

    .wa-breadcrumb.triangle li::after,
    .wa-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%;
        content: '';
        height: 0;
        width: 0;
        /* 48px is the height of the <a> element */
        border: 24px solid transparent;
        border-right-width: 0;
        border-left-width: 20px;
    }

    .wa-breadcrumb.triangle li::after {
        /* this is the white separator between two items */
        z-index: 1;
        -webkit-transform: translateX(1px);
        -moz-transform: translateX(1px);
        -ms-transform: translateX(1px);
        -o-transform: translateX(1px);
        transform: translateX(1px);
        border-left-color: #ffffff;
        /* reset style */
        margin: 0;
    }

    .wa-breadcrumb.triangle li>*::after {
        /* this is the colored triangle after each element */
        z-index: 2;
        border-left-color: inherit;
    }

    .wa-breadcrumb.triangle li:last-of-type::after,
    .wa-breadcrumb.triangle li:last-of-type>*::after {
        /* hide the triangle after the last step */
        display: none;
    }

    .wa-breadcrumb.triangle.custom-separator li::after {
        /* reset style */
        background-image: none;
    }

    .wa-breadcrumb.triangle.custom-icons li::after,
    .wa-breadcrumb.triangle.custom-icons li>*::after {
        /* 50px is the height of the <a> element */
        border-top-width: 24px;
        border-bottom-width: 25px;
    }

    @-moz-document url-prefix() {

        .wa-breadcrumb.triangle li::after,
        .wa-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 .wa-breadcrumb.triangle.custom-icons li:first-of-type a:hover::before,
    .wa-breadcrumb.triangle.custom-icons li.current:first-of-type em::before,
    .no-touch .wa-multi-steps.text-center.custom-icons li:first-of-type a:hover::before,
    .wa-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 .wa-breadcrumb.triangle.custom-icons li:nth-of-type(2) a:hover::before,
    .wa-breadcrumb.triangle.custom-icons li.current:nth-of-type(2) em::before,
    .no-touch .wa-multi-steps.text-center.custom-icons li:nth-of-type(2) a:hover::before,
    .wa-multi-steps.text-center.custom-icons li.current:nth-of-type(2) em::before {
        background-position: -20px -40px;
    }

    .no-touch .wa-breadcrumb.triangle.custom-icons li:nth-of-type(3) a:hover::before,
    .wa-breadcrumb.triangle.custom-icons li.current:nth-of-type(3) em::before,
    .no-touch .wa-multi-steps.text-center.custom-icons li:nth-of-type(3) a:hover::before,
    .wa-multi-steps.text-center.custom-icons li.current:nth-of-type(3) em::before {
        background-position: -40px -40px;
    }

    .no-touch .wa-breadcrumb.triangle.custom-icons li:nth-of-type(4) a:hover::before,
    .wa-breadcrumb.triangle.custom-icons li.current:nth-of-type(4) em::before,
    .no-touch .wa-multi-steps.text-center.custom-icons li:nth-of-type(4) a:hover::before,
    .wa-multi-steps.text-center.custom-icons li.current:nth-of-type(4) em::before {
        background-position: -60px -40px;
    }
}