@charset "UTF-8";

body > div.content > footer ul.mod-menu {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    height: 3.75rem;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}

body > div.content > footer nav ul li > a {
    font-size: var(--small);
    display: inline-block;
    text-decoration: none;
}

body > div.content > footer nav ul li > a:hover {
    text-decoration: underline;
}

body > div.content > footer nav ul li.alias-parent-active > a,
body > div.content > footer nav ul li.current.active > a {
    color: var(--kdp-orange);
    font-weight: bold;
    text-decoration: underline;
}

/* Current displays */
@media only screen and (min-width: 992px) and (max-width: 1141px) {
    :root {
        --footer-wrapper: var(--page-wrapper);
    }
}

/* Desktops */
@media only screen and (max-width: 991px) {
    :root {
        --content-wrapper: var(--page-wrapper);
        --copyright-margin: 3rem;
        --small-wrapper: var(--page-wrapper);
    }

    .desktop-hide {
        display: none;
    }

    body > div.content > footer div.bottom-menu {
        display: none;
        left: -9999px;
    }

    div.bottom-copyrights {
        margin-top: var(--copyright-margin);
    }

}

/* Tablet */
@media only screen and (max-width: 767px) {
}

/* Mobile */
@media only screen and (max-width: 479px) {
}