﻿.coc-breadcrumb {
    /*background-color: var(--coc-color-lighter-gray);*/
}

    .coc-breadcrumb a:focus {
        color: var(--coc-color-blue);
        text-decoration: underline;
    }
    .coc-breadcrumb a:hover {
        color: var(--coc-color-blue);
    }
/* bootstrap container was a bit too limiting */
.breadcrumb-container {
    margin: 0% 10%;
}

.breadcrumb-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.breadcrumb-listitem {
    display: inline-block;
    color: black;
}
    .breadcrumb-listitem a {
        color: black;
    }

.breadcrumb-current-page {
    font-weight: bolder;
}

/* bootstrap size breakpoints */
/* xs */
@media only screen and (max-width: 575px) {
    .coc-breadcrumb {
        display: none;
    }
}

/* sm */
@media only screen and (min-width: 576px) and (max-width: 767px) {
}

/* md */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}

/* lg */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* xl */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

/* styles at max widths */
/* xs */
@media only screen and (max-width: 575px) {
}

/* sm */
@media only screen and (max-width: 767px) {
}

/* md */
@media only screen and (max-width: 991px) {
}

/* lg */
@media only screen and (max-width: 1199px) {
    .breadcrumb-container {
        margin: 0% 5%;
    }
}

/* xl */
@media only screen and (max-width: 1399px) {
}