
/*custom font*/

i.fa.fa-chevron-right.ext-gre {
    float: left;
    padding-top: 9px;
    color: #9e9890;
    font-size: 21px;
    padding-right: 23px;
}
.breadcrumb {
    /*centering*/
    display: inline-block;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35); */
    overflow: hidden;
    border-radius: 5px;
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    /* counter-reset: flag; */
    background: #fff;
    margin-bottom: 0;
    padding: 0px 155px 0px;
    position: relative;
    top: 5px;
}

    .breadcrumb a {
        text-decoration: none;
        outline: none;
        display: block;
        float: left;
        font-size: 18px;
        line-height: 36px;
        color: #b5986b;
        padding: 0 10px 0 0px;
         position: relative;
        font-weight: 600;
    }
        /*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
        .breadcrumb a:first-child {
            /*padding-left: 46px;
            border-radius: 5px 0 0 5px;*/ 
        }

            .breadcrumb a:first-child:before {
                left: 14px;
            }

        .breadcrumb a:last-child {
            border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
            padding-right: 20px;
        }

        /*hover/active styles*/
        .breadcrumb a.active, .breadcrumb a:hover {
             color: #9e9890;
            padding-right: 28px;
        }

            .breadcrumb a.active:after, .breadcrumb a:hover:after {
                background: #b5986b;
                /* background: linear-gradient(135deg, #333, #000); */
            }

        /*adding the arrows for the breadcrumbs using rotated pseudo elements*/
         
        /*we dont need an arrow after the last link*/
        .breadcrumb a:last-child:after {
            content: none;
        }
        /*we will use the :before element to show numbers*/
        .breadcrumb a:before {
            /* content: counter(flag); */
            counter-increment: flag;
            /*some styles now*/
            border-radius: 100%;
            /* width: 20px; */
            /* height: 20px; */
            line-height: 20px;
            /* margin: 8px 0; */
            position: absolute;
            top: 0;
            left: 30px;
            background: #f8f4ef;
            /* background: linear-gradient(#444, #222); */
            font-weight: bold;
        }


.flat a, .flat a:after {
    background: white;
    color: black;
    transition: all 0.5s;
}

    .flat a:before {
        background: white;
        box-shadow: 0 0 0 1px #ccc;
    }

    .flat a:hover, .flat a.active,
    .flat a:hover:after, .flat a.active:after {
        background: #9EEB62;
    }

@media (max-width: 1520px) {

    .breadcrumb {
         padding: 0px 213px 0px;
     }
}

@media (max-width: 1084px) {

    .breadcrumb {
        padding: 0px 313px 0px;
    }
}

    @media (max-width: 520.98px) {
        .breadcrumb a.active, .breadcrumb a:hover {
            padding-right: 12px;
        }

        .breadcrumb a:first-child {
            padding-left: 10px;
        }

        .breadcrumb a:last-child {
            padding-left: 10px;
            float: right;
        }

        .breadcrumb a {
            padding: 0 10px 0 23px;
        }

        .breadcrumb {
            padding: 0px 20px 0px;
        }


        i.fa.fa-chevron-right.ext-gre {
            padding-right: 5px;
        }
    }