/* Target this one footer contact column */
.cm-footer-contact-us {
    display: flex;
    flex-direction: column;
}

/* Keep the title first */
.cm-footer-contact-us > p {
    order: 1;
}

/* Put the Contact Us button/grid second */
.cm-footer-contact-us > .d-grid {
    order: 2;
    margin-bottom: 0.5rem;
}

/* Put the remaining email address below the button */
.cm-footer-contact-us > address {
    order: 3;
    margin-bottom: 0;
}

/* Hide Linux Books and its two following breaks */
.cm-footer-contact-us address > strong,
.cm-footer-contact-us address > strong + br,
.cm-footer-contact-us address > strong + br + br {
    display: none;
}

/* Hide phone icon and the break that follows it */
.cm-footer-contact-us address > i.fa-phone,
.cm-footer-contact-us address > i.fa-phone + br {
    display: none;
}

/* Remove Catalog Breadcrumb */
.breadcrumb > .breadcrumb-item:nth-child(2) {
    display: none;
}
    
/* Change Manufacturers to Brands */
#cm-hm-brands {
    font-size: 0;
}

/* New visible label */
#cm-hm-brands::before {
    content: "Brands";
    font-size: 1rem;
}

/* Restore Bootstrap dropdown caret */
#cm-hm-brands.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid currentColor;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    font-size: 1rem;
}