.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}
.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}
.radio .cr {
    border-radius: 50%;
}
.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}
.radio .cr .cr-icon {
    margin-left: 0.04em;
}
.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}
.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}

/* Breadcrumbs from http://bootsnipp.com/snippets/featured/triangle-breadcrumbs-arrows */


/** Default button **/

.btn-breadcrumb {
    margin-top: 50px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
}
.btn-breadcrumb li {
    position: relative;
}
.btn-breadcrumb li:not(:last-child):before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 10px solid #dcdcdc;
    position: absolute;
    top: 50%;
    margin-top: -26px;
    margin-left: 1px;
    left: 100%;
    z-index: 3;
}
.btn-breadcrumb li:not(:last-child):after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -26px;
    left: 100%;
    z-index: 3;
}
.btn-breadcrumb li.active:not(:last-child):after {
    border-left: 10px solid #f1022a;
}
.btn-breadcrumb li a {
    color: #838587;
    background-color: #fff !important;
    border-color: #eaeaea;
    font-family: 'ElleFutura-Bold';
    font-size: 18px;
    height: 50px;
    text-transform: uppercase;
    cursor: default;
    padding-top: 12px;
    margin-bottom: 0;
}
.btn-breadcrumb li.active a {
    background-color: #f1022a !important;
    color: #fff;
}
.nav-justified > li:first-child > a {}
.nav-justified > li:last-child > a {}
@media (max-width: 991px) {
    .btn-breadcrumb li {
        display: none
    }
    .btn-breadcrumb li.active {
        display: block
    }
}
@media (min-width: 600px) and (max-width: 991px) {
    .btn-breadcrumb {
        display: table !important;
    }
    .btn-breadcrumb li {
        display: table-cell !important;
        width: auto;
    }
    .btn-breadcrumb li a {
        font-size: 14px;
    }
}
