﻿.coc-footer {
    background-color: var(--coc-color-light-blue);
}

    .coc-footer a {
        display: inline-block; /* removes unnecessary clickable whitespace */
        color: var(--coc-color-dark-blue);
        text-decoration: underline;
    }
        .coc-footer a:focus {
            text-decoration: underline;
            cursor: pointer !important;
        }
        .coc-footer a:hover {
            text-decoration: underline;
            cursor: pointer !important;
        }

/* bootstrap btn padding needed to be changed */
.coc-footer .btn {
    padding: .1rem .4rem;
    cursor: default !important;
}
    .coc-footer .btn:focus {
        text-decoration: underline;
        box-shadow: var(--coc-shadow-element-size) white;
        transition: color .15s ease-in-out;
    }

.coc-footer .footer-heading {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.coc-footer p {
    margin: 0px;
}

.coc-footer hr {
    display: none;
}

/* boostrap container was a bit too limiting */
.footer-container {
    margin: 0% 10%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}
.footer-address {
    text-align: center;
}
    .footer-address a {
        margin-left: auto;
        margin-right: auto;
    }

.footer-links {
    padding: 0px;
    list-style: none;
}

.footer-copyright {
    text-align: center;
}


/* bootstrap size breakpoints */
/* xs */
@media only screen and (max-width: 575px) {
    .coc-footer hr {
        display: block;
        border-top: 1px solid black;
        width: 100%;
        margin-top: 0px;
    }
}

/* 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) {
    .footer-container {
        margin: 0% 2.5% !important;
    }
    .footer-links-container {
        display: block;
    }
}

/* sm */
@media only screen and (max-width: 767px) {

}

/* md */
@media only screen and (max-width: 991px) {

}

/* lg */
@media only screen and (max-width: 1199px) {
    .footer-container {
        margin: 0% 7.5%;
    }
}

/* xl */
@media only screen and (max-width: 1399px) {
}