
/*
blu: #00427f
verde: #079181
*/

.breadcumbs, .breadcumbs * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.breadcumbs {
    width: 100%;
    height: 4em;
    counter-reset: section;
    margin-bottom: .5em;
    color: #00427f;
}

.breadcumb {
    position: relative;
    width: auto;
    display: inline-block;
    height: 100%;
    text-align: center;
    float: left;
    cursor: pointer;
}

.breadcumb .title {
    position: absolute;
    bottom: 2.2em;
    width: 100%;
    left: 0;
    line-height: 0.8em;
}

.breadcumb:before {
    position: absolute;
    content: '';
    bottom: 0.8em;
    left: 0em;
    right: 3em;
    border-top: 0.1em solid;
    transform: translateX(-50%);
}

.breadcumb:first-child:before {
    display: none;
}

.breadcumb:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1.6em;
    height: 1.6em;
    margin-left: -0.85em;
    border-radius: 50%;
    border: 0.1em solid;
    counter-increment: section;
    content: "" counter(section);
    line-height: 1.4em;
    text-align: center;
    transition: transform .3s ease-in-out;
}

.breadcumb:last-child:after {
    content: "\f11e";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 80%;
    width: 2em;
    height: 2em;
    line-height: 2em;
    margin-left: -1.06em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.breadcumb:last-child.current:after {
    transform: rotate(20deg);
}

.breadcumb.disabled {
    opacity: 0.4;
}
/*
.breadcumb.visited {
    color: #00427f;
}

.breadcumb.visited:after {
    font-weight: bold;
    content: "✔";
}
.breadcumb.current.visited:after {
    font-weight: bold;
    content: "" counter(section);
}
*/
.breadcumb.current {
    font-style: bold;
    color: #079181;
}

@keyframes "pulse2" {
 0% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
 }
 50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
 }
 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
 }

}

@-moz-keyframes pulse2 {
 0% {
   -moz-transform: scale(1.1);
   transform: scale(1.1);
 }
 50% {
   -moz-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -moz-transform: scale(1);
   transform: scale(1);
 }

}

@-webkit-keyframes "pulse2" {
 0% {
   -webkit-transform: scale(1.1);
   transform: scale(1.1);
 }
 50% {
   -webkit-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -webkit-transform: scale(1);
   transform: scale(1);
 }

}

@-ms-keyframes "pulse2" {
 0% {
   -ms-transform: scale(1.1);
   transform: scale(1.1);
 }
 50% {
   -ms-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -ms-transform: scale(1);
   transform: scale(1);
 }

}



.breadcumb.attention:after {
    font-style: bold;
    color: red;
    -webkit-animation: pulse2 1s linear infinite;
    -moz-animation: pulse2 1s linear infinite;
    -ms-animation: pulse2 1s linear infinite;
    animation: pulse2 1s linear infinite;
}
.breadcumb.attention .title {
    color: red;
}

.breadcumb.current:after {
    transform: scale(1.25);
}

.breadcrumbs-button {
    width: 7em;
    border: 1px solid #00427f;
    background: white;
}