/**
 * Footer menu styling
 * Vervangt de "Powered by WordPress and HybridMag" credit.
 */

.hm-footer-bottom-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hm-footer-menu {
    margin-left: auto;
}

.hm-footer-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hm-footer-menu-list li {
    margin: 0 0 0 20px;
    padding: 0;
}

.hm-footer-menu-list li:first-child {
    margin-left: 0;
}

.hm-footer-menu-list a {
    text-decoration: none;
    font-size: 14px;
    color: inherit;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.hm-footer-menu-list a:hover,
.hm-footer-menu-list a:focus {
    text-decoration: underline;
}

/* Mobiel: menu onder de copyright-tekst, links uitgelijnd, items onder elkaar op zeer smalle schermen */
@media (max-width: 767px) {
    .hm-footer-bottom-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .hm-footer-menu {
        margin-left: 0;
        margin-top: 10px;
    }

    .hm-footer-menu-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
