/*------------------------------------*\
    #BREADCRUMB
\*------------------------------------*/


.cds-breadcrumb {
    position: relative;
    z-index: 2;

    color: #e9e9e9;
    line-height: 1;
    
    font-size: 12px;
}

.cds-breadcrumb__inner {
    position: absolute;
    left: 15px;
    top: 15px;
}


.cds-breadcrumb a {
    color: #e9e9e9;

    text-decoration: none;

    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.cds-breadcrumb a:hover {
    color: #cbcbcb;
}

.cds-breadcrumb .fa {
    margin: 0 10px;
    
    line-height: inherit;
}

/* Add this class to be block style*/
.cds-breadcrumb--not-overlay {
    background: #e9e9e9;
    color: #333;
}

.cds-breadcrumb--not-overlay a {
    color: #333;
}

.cds-breadcrumb--not-overlay .cds-breadcrumb__inner {
    position: relative;
    top: inherit;
    left: inherit;

    padding: 15px;
}


/*------------------------------------*\
    Hidden mobile
\*------------------------------------*/


@media (max-width: 992px){
	.cds-breadcrumb {
	    display: none;
		}	
    .cds-breadcrumb--not-overlay {
	    display: none;
		}	
 
}
